$(command) 使用
$(command)的输出就是其中命令的输出
- #!/bin/sh
-
-
echo the current directory $PWD
-
echo the current users are $(who)
-
-
exit 0
1.算术扩张$((...)), 把你准备求值的表达式扩在 $((...)) 中能够更有效的完成简单的算数运算
- #!/bin/sh
-
-
x=0
-
while [ "$x" -ne 10 ]
-
do
-
echo $x
-
x=$(($x+1))
-
-
done
-
-
exit 0
2.参数扩展
- #!/bin/sh
-
-
for i in 1 2
-
do
-
my_secret_passcess ${i}_tmp #注意 不能写成 $i_tmp,否则出错
-
done
。。。。。。。。还有很多。。。。
阅读(2448) | 评论(0) | 转发(0) |