摘要: 新建10000个文件 #!/bin/bash mkdir -p test for ((i=1; i<=10000; i++)) do touch ./test/$(date +%H%M%S%N).txt done 测试find -delete time find ./test/* -delete r 阅读全文
posted @ 2021-06-22 09:41 三木燕 阅读(114) 评论(0) 推荐(0) 编辑