瀏覽代碼

Add script to generate files

master
Arun Prakash Jana 4 年之前
父節點
當前提交
5bd4a65b91
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: A75979F35C080412
共有 1 個檔案被更改,包括 8 行新增0 行删除
  1. +8
    -0
      misc/test/genfiles.sh

+ 8
- 0
misc/test/genfiles.sh 查看文件

@@ -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…
取消
儲存