我想解密一些 gpg 文件,输出到一个文件中。但每次 gpg 都会询问密码。
for i in *.gpg; do echo $i>>~/t; gpg -d --batch $i >>~/t; done
我测试了 --multifile 和 --batch,那些不符合我的意愿。
答案1
几种方式:
# gather the password into $P
stty -echo; read -r P; stty echo;
for i in *.gpg; do printf '%s\n' "$i" >> ~/t; printf '%s' | gpg -d --batch --passphrase-fd 0 "$i" >> ~/t; done
# gather the password into $P
stty -echo; read -r P; stty echo;
for i in *.gpg; do printf '%s\n' "$i" >> ~/t; gpg -d --batch --passphrase "$P" "$i" >> ~/t; done
d=$(mktemp -d)
# gather the password into a file named `p`
stty -echo; cat > "$d/p"; stty echo
for i in *.gpg; do printf '%s\n' "$i" >> ~/t; gpg -d --batch --passphrase-file "$d/p" 0 "$i" >> ~/t; done
rm -rf "$d"