Created
February 26, 2014 14:08
-
-
Save mbursi/9230035 to your computer and use it in GitHub Desktop.
Generate random files with random content
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
no_of_files=10; | |
counter=1; | |
while [[ $counter -le $no_of_files ]]; | |
do echo Creating file no $counter; | |
dd bs=1024 count=$RANDOM skip=$RANDOM if=/dev/urandom of=random-file.$counter; | |
let "counter += 1"; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment