练习 写一个脚本 能接受一个参数(文件路径);判定:此参数如果是一个存在的文件,就显示“OK”;否则就显示“No such the file.” [root@localhost mscripts]# cat lx7.sh #!/bin/bash if [ $# -lt 1 ]; then echo "please input argument." exit 9 fi if [ -f $1 ]; then echo "ok" else echo "No such file." fi 练习 2 写一个脚本 给脚本传递两个参数(整数);显示此两者之和,之积;
[root@localhost mscripts]# cat lx8.sh
#!/bin/bash if [ $# -lt 2 ]; then echo "please input two digit." exit 9 fi echo -e "Sum is $[$1+$2].\nproduct is $(($1*$2))."
原文链接:https://www.f2er.com/centos/375157.html