unix shell 脚本中 if 语句的语法错误:ksh: test: argument Expected”
在 unix shell 脚本中执行 ssh 命令中的 if 语句时出错。 Linux 和 sunos
#!/bin/bash
ssh u1@s1 "if [ $a == 100 ]
then
echo Hey that is a large number
pwd
fi
date"
错误: Ksh:测试:预期参数
Error on executing if statement in ssh command in unix shell scripting.
Linux and sunos
#!/bin/bash
ssh u1@s1 "if [ $a == 100 ]
then
echo Hey that is a large number
pwd
fi
date"
Error:
Ksh: test: argument expected
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
$a
为空,您将得到以下结果:解决方案:引用变量
或使用双括号条件
我正在使用 ksh 93u+
You'll get this if
$a
is empty:Solution: quote the variable
Or use the double bracket conditional
I'm using ksh 93u+