Skip to content

Instantly share code, notes, and snippets.

@mbursi
Created February 26, 2014 14:08
Show Gist options
  • Save mbursi/9230035 to your computer and use it in GitHub Desktop.
Save mbursi/9230035 to your computer and use it in GitHub Desktop.
Generate random files with random content
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