- 赋值的"="两边不能有空格。
- 条件测试 [ ] 里的条件要有空格和 "[“ 和 "]"
- shell 默认是用空格来区分每个参数的。
for day in sun monday <<< 两个元素
do
echo $day
done
for day in ”sun monday“ <<< 只是一个元素
do
echo $day
done
- 有if 结尾就要包括fi, 包括else if 的奥。
if [ xxx ] then
echo $@
else if [ xxx ] then
echo $*
fi
fi
- $@ 每一个参数用双引号括起来
$* 所有的参数用一个双引号括起来
$# 参数的个数
阅读(842) | 评论(0) | 转发(0) |