centos脚本基础学习3

前端之家收集整理的这篇文章主要介绍了centos脚本基础学习3前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

练习 写一个脚本 能接受一个参数(文件路径);判定:此参数如果是一个存在的文件,就显示“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

猜你在找的CentOS相关文章