标签: if-statement conditional csh
无论字符串中是否存在大小写,我都希望找到“错误”一词。我正在使用以下代码:
set line="ERROR : Cannot set timing callback" if (echo $line | grep -ic "error") then echo "line is $line" endif
但这给了我以下错误:
如果:表达式语法。