如何检查shell脚本中是否存在命令?

前端之家收集整理的这篇文章主要介绍了如何检查shell脚本中是否存在命令?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在写我的第一个shell脚本。在我的脚本中,我想检查某个命令是否存在,如果不存在,请安装可执行文件。如何检查此命令是否存在?
if #check that foobar command doesnt exist
then
    #now install foobar
fi
一般来说,这取决于你的shell,但如果你使用bash,zsh,ksh或sh(由dash提供),以下应该工作:
if ! type "$foobar_command_name" > /dev/null; then
  # install foobar here
fi

对于一个真正的安装脚本,你可能想要确保类型不会成功返回的情况下,当有一个别名foobar。在bash你可以做这样的事情:

if ! foobar_loc="$(type -p "$foobar_command_name")" || [ -z "$foobar_loc" ]; then
  # install foobar here
fi
原文链接:https://www.f2er.com/bash/392292.html

猜你在找的Bash相关文章