摘要: 参考链接: https://www.cnblogs.com/mingyue605/p/10704108.html #!/bin/sh RM="rm -rf" function delete_all_dir() { for i in `ls` do if [ -d $i ];then $RM $i f 阅读全文
posted @ 2021-01-21 18:05 yoyoma0355 阅读(1223) 评论(0) 推荐(0) 编辑