用于检查我正在使用的csh脚本中是否存在任何文件
if [ -f /var/opt/temip/conf/.temip_config ]
但我得到低于错误
if [ -f /var/opt/temip/conf/.temip_config ] if: Expression Syntax.
谁能告诉我怎么做?
解决方法
从
the manpage开始:
f Plain file
您将它与if语句一起使用:
if ( -f file.txt ) then echo Exists else echo No such file endif
基于这个问题and your previous question,你似乎对csh语法的工作原理一无所知,因为你继续使用POSIX shell语法.我强烈建议您要么熟悉csh语法,要么只使用POSIX shell(这可能更适合脚本编写).