当前位置: 技术问答>linux和unix
Linux脚本简单语法
来源: 互联网 发布时间:2017-02-08
本文导语: #!/bin/sh if[ 1=1 ]; then echo 1 fi 异常:syntax error near unexpected token 'then' 躺着也中枪? | if和[之间加个空格。 | if [ 1=1 ]
#!/bin/sh
if[ 1=1 ]; then
echo 1
fi
异常:syntax error near unexpected token 'then'
躺着也中枪?
if[ 1=1 ]; then
echo 1
fi
异常:syntax error near unexpected token 'then'
躺着也中枪?
|
if和[之间加个空格。
|
if [ 1=1 ]