以前只接触过bash,以为既然大家都是shell脚本语言,应该没有什么大差别,实际上还是差异很大的,包括for,while,if等语法都是差异挺大的,下面就分别贴出同样功能的分别实现的代码。
#!/bin/bash
x=1
while [ $x -le 5 ]
do
echo "Welcome $x times"
x=$(( $x + 1 ))
done
#!/bin/sch
set x=1
while ($x < 5 )
echo "Welcome $x times"
@ x = $x + 1
end