摘要: 1.执行shell脚本提示输入并根据输入内容执行 #!/bin/bash if [ $# -ne 3 ];then echo "usage: $(basename $0) par1 par2 par3" exit fi myfunc() { echo $(($1*$2*$3)) } result=` 阅读全文
posted @ 2023-11-14 09:50 Franson 阅读(6) 评论(0) 推荐(0) 编辑