csh脚本:检查命令是否存在

时间:2014-02-26 11:42:22

标签: command where csh which

我想有类似的东西

if(command_not_exists)退出

有人可以告诉我如何在 cshell 脚本中实现此功能吗?

1 个答案:

答案 0 :(得分:3)

使用where命令(我尝试使用which命令)解决了我的问题。解决方案:

   if(`where test_cmd` == "") then
      printf "\ntest_cmd: Command not found\n";
      exit(1);
   endif

由于