channy14

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2019年7月23日

摘要: #!/usr/bin/bash i=1 while [ $i -le 10 ] do i=$(($i+1)) dd if=/dev/zero of=file$i.txt bs=2G count=1 echo "file$i" done while true; do find /testrm/ -size 2G | xargs -n 1 rm -rf #/bin/sleep 1 fi... 阅读全文
posted @ 2019-07-23 10:58 channy14 阅读(623) 评论(0) 推荐(0) 编辑