|
1. 编写函数,实现打印绿色OK和红色FAILED 判断是否有参数,存在为Ok,不存在为FAILED
- [root@template shellScript]# cat ex1.sh
- # 编写函数,实现打印绿色OK和红色FAILED 判断是否有参数,存在为Ok,不存在为FAILED
- #!/bin/bash
- fun(){
- if [ $# -ne 0 ]
- then
- echo -e "\033[32m OK \033[0m"
- else
- echo -e "\033[31m FAILED \033[0m"
- fi
- }
- read -p "plz input sth..." str
- fun $str
- [root@template shellScript]# ./ex1.sh
- plz input sth...1qw11d1d
- OK
- [root@template shellScript]# ./ex1.sh
- plz input sth...
- FAILED
复制代码 运行效果图:
2. 编写函数,实现判断是否无位置参数,如无参数,提示错误
- [root@template shellScript]# cat ex2.sh
- # 编写函数,实现判断是否无位置参数,如无参数,提示错误
- #!/bin/bash
- fun() {
- if [ $# -eq 0 ]
- then
- echo "无位置参数"
- else
- echo "位置参数为$@"
- fi
- }
- read -p "plz input sth..." str
- fun $str
复制代码 运行截图:
3. 编写函数实现两个数字做为参数,返回最大值
- # 此方法不能比较负数的大小
- [root@template shellScript]# cat ex3.sh
- # 编写函数实现两个数字做为参数,返回最大值
- #!/bin/bash
- fun(){
- # 判断输入是否是数字
- if [[ $a =~ ^[0-9]*$ ]] && [[ $b =~ ^[0-9]*$ ]]
- then
- # 比较大小
- if [ $a -gt $b ]
- then
- echo "$a > $b"
- elif [ $a -lt $b ]
- then
- echo "$a < $b"
- else
- echo "$a = $b"
- fi
- else
- echo "请输入俩个数字!!!"
- fi
- }
- # 输入负数也可以比较大小
- # read -p "plz input two num:" a b
- read -p "plz input num1:" a
- read -p "plz input num2:" b
- fun $a $b
复制代码 测试截图:
方式二:- [root@template shellScript]# cat ./ex3_2.sh
- #!/bin/bash
- read -p "please input two number:" a b
- fun(){
- [ -z "$a" -o -z "$b" ] && {
- echo "please input 'two' number"
- exit 1
- }
- expr $a + 10 &>/dev/null
- return_a=$?
- expr $b + 10 &>/dev/null
- return_b=$?
- [ "$return_a" -eq 0 -a "$return_b" -eq 0 ] || {
- echo "please input two 'number'"
- exit 2
- }
- [ "$a" -lt "$b" ] && {
- echo "$a < $b"
- exit 0
- }
- [ "$a" -eq "$b" ] && {
- echo "$a = $b"
- exit 0
- }
- [ "$a" -gt "$b" ] && {
- echo "$a > $b"
- exit 0
- }
- }
- fun $a $b
复制代码 运行截图:
出处:http://www.cnblogs.com/sre-chan/-------------------------------------------
个性签名:今天做了别人不想做的事,明天你就做得到别人做不到的事,尝试你都不敢,你拿什么赢!
如果觉得这篇文章对你有小小的帮助的话,记得在右下角点个“推荐”哦,博主在此感谢!
来源:https://www.cnblogs.com/sre-chan/p/17278868.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作! |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?立即注册
x
|