如果所选文本中出现字符串“-----BEGIN PGP MESSAGE-----”,我想解密所选文本。我有以下代码,但它没有显示任何内容。
#!/bin/bash
xsel > pgp.txt
if [grep -e "-----BEGIN PGP MESSAGE-----" pgp.txt]
then
gnome-terminal --command "gpg -d -o decrypted.txt pgp.txt"
gedit decrypted.txt
fi
当我在选择文本后在终端上运行它时
line 3: [grep: command not found
我是 bash 脚本的新手。任何帮助将不胜感激..
谢谢