Add script to generate files

This commit is contained in:
Arun Prakash Jana 2020-04-04 09:57:21 +05:30
parent 73daf8be5b
commit 5bd4a65b91
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 8 additions and 0 deletions

8
misc/test/genfiles.sh Executable file
View File

@ -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