This file contains hidden or 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
#!/usr/bin/env bash | |
# Forked from https://gist.github.com/patrickt010/1a5ce16a7fe33e97a0ab | |
if [ $# -ne 4 -a $# -ne 5 ] | |
then | |
echo "Usage: generatefiles <depth> <num of folders per depth> <num of files per folder> <min size of file> [<max size of file>]" | |
exit -1 | |
fi |