检查是否从bash安装了gpg-agent

时间:2014-09-08 13:30:13

标签: bash scripting fedora gnupg

我正在寻找检查gpg-agent是否安装在计算机中的最佳方法。 我需要从shell脚本中检查。

谢谢。

1 个答案:

答案 0 :(得分:1)

您可能需要修改路径。使用RHEL 6和7进行测试。

if test -x /usr/bin/gpg-agent; then echo installed; else echo not installed; fi

或者:

if [ -x /usr/bin/gpg-agent ]; then echo insatlled; else echo not installed; fi

进一步阅读:help test