shell入门之expr的使用

在expr中加减乘除的使用,脚本如下:

#!/bin/sh
#a test about expr
v1=`expr 5 + 6`
echo "$v1"
echo `expr 3 + 5`
echo `expr 6 / 2`
echo `expr 9 \* 5`
echo `expr 9 - 6`

运行效果

shell入门之expr的使用

上一篇:hdu 5059(模拟)


下一篇:17+个ASP.NET MVC扩展点,含源码{转}