我正在寻找检查gpg-agent是否安装在计算机中的最佳方法。 我需要从shell脚本中检查。
谢谢。
答案 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
。