在linuxshell命令中expr虽然不是很起眼,但是它的作用是非常大的。包含:四则运算和字符串的操作。
一、先说四则运算,在shell中四则运算不能简简单单的加减乘除,需要使用expr。expr命令只能用于整数值,一般格式为:
expr arg1 operatorarg2
注意:
1、运算符左右都有空格,如果没有空格表示是字符串连接
2、使用乘号时,必须用反斜线屏蔽其特定含义。因为shell可能会误解显示星号的意义。
$expr 30 \* 3
90
3、如果试图计算非整数,将返回错误。
$rr=1.1
$expr $rr 1
expr: non-numericargument
4、expr默认是直接把运算结果输出到控制台,如果想赋值可以使用”`“
示例:
[root@zq-crmtest-20423tmp]# expr 10 10
20
[root@zq-crmtest-20423tmp]# expr 1500 900
2500
[root@zq-crmtest-20423tmp]# expr 30 / 3
10
[root@zq-crmtest-20423tmp]# expr 30 / 3 / 2
5
[root@zq-crmtest-20423tmp]# a=11
[root@zq-crmtest-20423tmp]# b=`expr $a - 1`
[root@zq-crmtest-20423tmp]# echo $b
10
补充:对于四则运算,最好用$(())代替expr,效率更高,而且运算符两边不用空格
[root@zq-crmtest-20423tmp]# count=1
[root@zq-crmtest-20423tmp]# count=$(($count 1))
[root@zq-crmtest-20423tmp]# echo $count
对于四则运算,也可以使用$[],运算符两边也不用空格
[root@zq-crmtest-20423tmp]# var=$[1 5]
[root@zq-crmtest-20423tmp]# echo $var //6
[root@zq-crmtest-20423tmp]# count=1
[root@zq-crmtest-20423tmp]# var=$[$count 1]
[root@zq-crmtest-20423tmp]# echo $var
二、expr的字符串操作:
1、返回字符串长度:expr length 字串
[root@zq-crmtest-20423tmp]# expr length "hello world"
11
2、返回 string1 中包含 string2 中任意字符的第一个位置: expr indexstring1 string2
[root@zq-crmtest-20423tmp]# expr index "abc" "b"
2
3、提取字符串的子串:expr substr 内容 起始位置 终点位置,
[root@zq-crmtest-20423tmp]# expr substr "this is a test" 3 5
is is