diff --git a/misc/test/genfiles.sh b/misc/test/genfiles.sh new file mode 100755 index 00000000..10c49d4c --- /dev/null +++ b/misc/test/genfiles.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +# Generates 100000 files in the current directory + +i=1; while [ $i -le 100000 ]; do + mktemp -p . -t 'XXXXXXXXXXXXXXXXXXXXX' + i=$(( i + 1 )) +done