shell 脚本总结2

echo `seq -s " " 10`  --命令得用反引号
echo $(seq -s " " 10)

(())
let
expr
bc  --特点是支持小数计算
$[]

----------
[root@wmstest ~]# ((ruan=1*8-9))
[root@wmstest ~]# echo $ruan
-1
---------
[root@wmstest ~]# b=$((1*2+3))
[root@wmstest ~]# echo $b
5
---------
[root@wmstest shell_ruanjp]# i=2
[root@wmstest shell_ruanjp]# let i=i+8
[root@wmstest shell_ruanjp]# echo $i
10
---------
[root@wmstest ~]# echo "scale=2;5/3"|bc
1.66
---------
read -p "pls input a number:" var
read -t 3 -p "pls input a number:"  --3秒超时退出

&/dev/null --它的作用


[<测试表达式>]
test -f file && echo 1||echo 0
test ! -f file && echo 1||echo 0
--和上面等同
[ -f file.txt ] && echo 1||echo 0


文件测试操作符

 


while true
do
 代码层
done

你可能感兴趣的:(shell,脚本总结2)