ubuntu 下执行脚本报错如下:
[email protected]:/var/tmp# sh *sh
guhua_route.sh: 8: [: 10: unexpected operator
guhua_route.sh: 11: [: 10: unexpected operator
guhua_route.sh: 14: [: 10: unexpected operator
该脚本在 centos下执行没有问题,到了ubuntu下就不行。
原因:
因为ubuntu默认的sh是连接到dash的,又因为dash跟bash的不兼容所以出错了。
执行时可以把sh换成bash 文件名.sh来执行
参考链接:http://blog.csdn.net/u010665691/article/details/46118601