mirror of
https://github.com/crioux/turbo-linecount.git
synced 2024-10-27 17:24:01 +00:00
7 lines
334 B
Bash
7 lines
334 B
Bash
#!/bin/bash
|
|
|
|
dd if=/dev/urandom of=test_10MB.txt bs=1000000 count=10
|
|
dd if=/dev/urandom of=test_100MB.txt bs=1000000 count=100
|
|
dd if=/dev/urandom of=test_1GB.txt bs=1000000 count=1000
|
|
cat test_1GB.txt test_1GB.txt test_1GB.txt test_1GB.txt test_1GB.txt test_1GB.txt test_1GB.txt test_1GB.txt test_1GB.txt test_1GB.txt > test_10GB.txt
|