标签:
1,for file in ‘ls /etc‘
do
echo $file
done
2,shell算术表达式
declare
不支持浮点数,需要bc,awk支持
$[ ]
$(( ))
let
$(expr )
3,字符串
${#str}
${#str:1:4}
查找子串
shell要点
原文地址:http://www.cnblogs.com/yangzhouyyz/p/5162974.html