This will create 100 files each containing 1MB of random data:for i in {001..100}; do head -c 1M </dev/urandom >filename$i; done