Created
September 3, 2014 20:52
-
-
Save adelcambre/53d01cb7ded99f2652f6 to your computer and use it in GitHub Desktop.
Simple script to make lots of test files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in `seq 1000`; do | |
echo $i | |
touch $i | |
# or dd if=/dev/zero of=$i count=100 bs=1m | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment