引用其他shell文件
- source xx.sh
- . xx.sh
- 区别:留坑回填
判断语句if
- if关键字后要留空格
- 注意[]与[[]]的区别,尽量使用[[]]
字符串正则匹配("=~")
pattern='a*b$'
if [[ "aaabbbb" =~ $pattern ]];then
echo true
fi
也可以作字符串字串匹配
运算符
- ‘-0’、’-a’ 或、与
- && 、|| 与、或
while使用
while ((cond))
do
xxxx
break
done
case使用
case $var in
str1) xxxx
;;
str2) xxxx
;;
*) xxxx;
esac
shell中类hashmap实现
declare -A animals=( ["moo"]="cow" ["woof"]="dog")
for sound in "${!animals[@]}"; do
echo "$sound - ${animals[$sound]