摘要: echo -n "创建用户输入C,删除用户输入D!" read name function monitor() { if [ "$name" == "C" ] || [ "$name" == "c" ];then function_create elif [ "$name" == "D" ] || [ "$name" == "d" ]; then function_rm ... 阅读全文
posted @ 2019-03-07 18:36 kkblog 阅读(243) 评论(0) 推荐(0) 编辑