shell脚本之 —— 对传入的任意个位置参数进行累加

文章目录

    • 写在开头的话
    • 功能需求
    • 演示
    • 写在最后的话:


这里是一段防爬虫文本,请读者忽略。
本文原创首发于CSDN,作者IDYS
博客首页:https://blog.csdn.net/weixin_41633902/
本文链接:https://blog.csdn.net/weixin_41633902/article/details/107022293


写在开头的话

  • 请记住:实践是掌握知识的最快方法
  • 如果你只是怀着看看的态度去快速浏览文章,而不去认认真真的把文章里面讲的任何一个知识点去实践一遍,那么你永远也掌握不了它
  • 生命不息,折腾不止!

功能需求

  1. 定义一个菜单项,用于提示用户输入,实现交互
  2. 如果传入的位置参数含有非法字符,那么则提示用户输入不规范,并且退出程序
  3. 对传入的任意个位置参数进行累加

演示

  • 代码内容
#!/bin/bash

# 首先判断输入的参数里面是否含有字符串
function mycount(){
     
i=1
while [ "$i" -le "$#" ]
do
# 现在 通过${!i}去实现第一个参数,第二个参数,第n个参数的效果
if echo ${!i} | grep -q '[^1-9]'
then
  echo "your input contain str,please input again."
  exit 1
fi
let i++  # 让i递增
done

i=1

while [ "$i" -le "$#" ]
do
let sum=$sum+${!i}
let i=$i+1
done
echo $sum
}
function menu(){
     

cat << EOF
`echo "*****************this is a counting program start***************************"`
`echo "1.对你输入的参数实行累加"`
`echo "2.不做任何操作,直接退出"`
`echo "*****************this is a counting program end*****************************"`
EOF
read -p "请输入上述编号" num
case $num in
1)
mycount $@
;;
2)
echo "正常退出程序";;
*)
echo "你输入的$num为非法输入,异常退出"
esac
}
menu $@
  • 代码演示
[dayuanshuai@IDYS sh_day01]$ ./countv2.sh 12 13 14
*****************this is a counting program start***************************
1.对你输入的参数实行累加
2.不做任何操作,直接退出
*****************this is a counting program end*****************************
请输入上述编号1
39
[dayuanshuai@IDYS sh_day01]$ ./countv2.sh 12 13 14
*****************this is a counting program start***************************
1.对你输入的参数实行累加
2.不做任何操作,直接退出
*****************this is a counting program end*****************************
请输入上述编号2
正常退出程序
[dayuanshuai@IDYS sh_day01]$ ./countv2.sh 12 13 asa
*****************this is a counting program start***************************
1.对你输入的参数实行累加
2.不做任何操作,直接退出
*****************this is a counting program end*****************************
请输入上述编号1
your input contain str,please input again.

写在最后的话:

  • 无论每个知识点的难易程度如何,我都会尽力将它描绘得足够细致
  • 欢迎关注我的CSDN博客,IDYS’BLOG
  • 持续更新内容
    linux基础 | 数据通信(路由交换,WLAN) | Python基础 | 云计算
  • 如果你有什么疑问,或者是难题。欢迎评论或者私信我。你若留言,我必回复!
  • 虽然我现在还很渺小,但我会做好每一篇内容。谢谢关注!


你可能感兴趣的:(shell,shell,linux,运维,服务器,centos)