我得到一个错误./test.sh:行13:[:缺少`]’在文件test.sh
我尝试使用括号和其他选项,如-a或通过检查文件p1的大小,但错误总是存在,并且else语句总是执行,不管输入给定。我甚至试图通过删除;在第13行,但它没有帮助。
我尝试使用括号和其他选项,如-a或通过检查文件p1的大小,但错误总是存在,并且else语句总是执行,不管输入给定。我甚至试图通过删除;在第13行,但它没有帮助。
test.sh
#!/bin/bash echo "Enter app name" read y $y & top -b -n 1 > topLog.log #-w checks for the whole word not and sub string from that word grep -w "$y" topLog.log > p1 #-s option checks if the file p1 is present or not if [ -s "p1"]; #line 13 then echo "Successful " else echo "Unsuccessful" fi rm p1
我是新的bash脚本。所以如果有任何愚蠢的错误,请原谅我。
更改
原文链接:https://www.f2er.com/bash/391245.htmlif [ -s "p1"]; #line 13
进入
if [ -s "p1" ]; #line 13
注意空间。