读书人

简单的shell脚本运行抱错请帮忙看下

发布时间: 2012-03-01 10:25:46 作者: rapoo

简单的shell脚本运行抱错,请帮忙看下
#!/bin/sh
#this is test
if["1" > "0"]
then
echo "out 1"
fi



./test123运行提示 if[1:command not found

[解决办法]
加空格
[解决办法]
[前后要加空格
在linuxshell里,空格很重要

[解决办法]
#!/bin/sh
#this is test
if [ "1" > "0" ] #加空格
then
echo "out 1"
fi

# chmod +x test.sh
# ./test.sh
out 1
[解决办法]
if语句里 [ "1" > "0" ] 两边都需要空格的
[解决办法]
if[ "1" > "0" ]
then
echo "out 1"
fi

读书人网 >UNIXLINUX

热点推荐