标签: command where csh which
我想有类似的东西
if(command_not_exists)退出
有人可以告诉我如何在 cshell 脚本中实现此功能吗?
答案 0 :(得分:3)
使用where命令(我尝试使用which命令)解决了我的问题。解决方案:
where
which
if(`where test_cmd` == "") then printf "\ntest_cmd: Command not found\n"; exit(1); endif
由于