Selaa lähdekoodia

Add script to generate files

master
Arun Prakash Jana 5 vuotta sitten
vanhempi
commit
5bd4a65b91
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 muutettua tiedostoa jossa 8 lisäystä ja 0 poistoa
  1. +8
    -0
      misc/test/genfiles.sh

+ 8
- 0
misc/test/genfiles.sh Näytä tiedosto

@@ -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…
Peruuta
Tallenna