Created
December 3, 2017 04:13
-
-
Save sqamara/a73b87cd5f6d1c8ddc09eba0e1d4e285 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
for (( i=9; i<=29; i++)) | |
do | |
size=$((2**$i)) | |
dd if=/dev/zero of=dummyData/file_$size.txt bs=$size count=1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment