我尝试使用以下命令从命令提示符重定向PGP输出:
pgp --decrypt fileA.pgp --passphrase 'pp123' --eyes-only > std.txt 2> err.txt
我能得到的是:
std.txt:
NOTHING
err.txt:
fileA.pgp:decrypt (0:output file fileA.txt)
但是这个命令无法获取文件内容。怎么做?
答案 0 :(得分:0)
你可以尝试这个命令:
pgp --decrypt fileA.pgp --passphrase 'pp123' --eyes-only --output std.txt --output-file err.txt