摘要: ``` function sDelDirFile() { if [ "$#" -eq 1 ];then if [ -e "$1" ];then rm "$1" -rf echo "delete:$1" else echo "no exist:$1" fi else echo "function sDelDirFile:argc must is 1" fi ... 阅读全文
posted @ 2019-07-19 10:01 JohnRed 阅读(277) 评论(0) 推荐(0) 编辑