mirror of
https://github.com/jarun/nnn.git
synced 2024-11-08 04:13:14 +00:00
9 lines
162 B
Bash
9 lines
162 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Generates 100000 files in the current directory
|
||
|
|
||
|
i=1; while [ $i -le 100000 ]; do
|
||
|
mktemp -p . -t 'XXXXXXXXXXXXXXXXXXXXX'
|
||
|
i=$(( i + 1 ))
|
||
|
done
|