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`

执行效果
这里写图片描写叙述

posted @ 2016-04-17 17:10  phlsheji  阅读(216)  评论(0编辑  收藏  举报