i=$1
j=$2
c=$3
if [ $c == '+' ]
then
echo $i+$j="$((i+j))"
fi
if [ $c == '-' ]
then
echo $i-$j="$((i-j))"
fi
if [ $c == '*' ]
then
echo $i*$j="$((i*j))"
fi
if [ $c == '/' ]
then
echo $i/$j="$((i/j))"
fi
效果:
[root@ftp local]# ./test.sh 1 2 +
1+2=3
[root@ftp local]# ./test.sh 1 2 -
1-2=-1
是shell编程吧,是一种脚本语言,可以对系统进行管理和开发,最主要的是能区别于windows系统,因为windows是创建了一些图标,快捷方式,使用linux的shell编程能大大缩短时间,一般的服务器都是linux系统欢迎分享,转载请注明来源:内存溢出
评论列表(0条)