修复外壳脚本中的 if 条件



我有这些if条件,但它有编译错误。我该如何解决它?

if [ $DEVICE_ID == "" ]; then

我收到错误:

line 63: [: ==: unary operator expected

if [ 'ls -l Mytest*.log | wc -l' -eq 1 ]; then

我收到错误:

line 68: [: ls -l Kernel*.log | wc -l: integer expression expected
引用

变量:

if [ "$DEVICE_ID" == "" ]; then

但最好这样做:

if [ -z "$DEVICE_ID" ];

第二个错误是你需要使用反引号:

if [ $(ls -l Mytest*.log | wc -l) -eq 1 ]; then

如果您使用的是 bash,请为条件表达式使用双括号:它们对不带引号的变量更聪明

if [[ $DEVICE_ID = "" ]]; then ...

将起作用(注意:=而不是==用于纯字符串相等而不是模式匹配)

对于文件的存在,请使用数组

shopt -s nullglob
files=( *.log )
if (( ${#files[@]} > 0 )); the. Echo "there are log files"; fi

相关内容

  • 没有找到相关文章

最新更新