1
0
Fork 0
mirror of https://github.com/jarun/nnn.git synced 2025-01-26 18:56:36 +00:00
nnn/misc/test/genfiles.sh

9 lines
162 B
Bash
Raw Normal View History

2020-04-04 04:27:21 +00:00
#!/bin/sh
# Generates 100000 files in the current directory
i=1; while [ $i -le 100000 ]; do
mktemp -p . -t 'XXXXXXXXXXXXXXXXXXXXX'
i=$(( i + 1 ))
done