shell学习过程中的错误集锦

1

 if语句,没有加;号没有以fi结尾,报错:

在文件最后一行报错:

line 53: syntax error: unexpected end of file

2

使用 if [ x$1 -ne x ]; 

命令行传入1时,报错 integer expression expected

因为: -gt ,-lt,-eq 比较的都是数字

3

你可能感兴趣的:(Linux)