mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Add script to generate files
This commit is contained in:
parent
73daf8be5b
commit
5bd4a65b91
8
misc/test/genfiles.sh
Executable file
8
misc/test/genfiles.sh
Executable 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
|
Loading…
Reference in a new issue