我正在尝试使用与源不同的输出目录。但gpg --output
总是失败。这是我的脚本:
#!/bin/bash
#############################################
source=/u1/test/sourcefilein/
outputdir=/u1/encryptedfileout/
#############################################
for file in `ls $source`;do
#echo encrypting $file
sleep 10
gpg --batch --output $outputdir$file.gpg --encrypt-files \
--recipient juliyana@hotmail.com $source
sleep 10
done