I would like to know how to overwrite an output file with gpg encryption? if i have the same filename in the target directory it fails decryption the command that i use to decrypt is :

gpg --passphrase-fd 0 -o D:/Notification/mytest.txt --batch --passphrase-file D:/passphrase.txt -d D:/Notification/mytest.gpg

In this case, it wouldn't overwrite the mytest.txt file, so each time i need to delete the contents of the Directory(D:/Notification) when i execute the script.

Is there any option to overwrite the output fie?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Adding --batch --yes

Example:

gpg --batch --yes -u me@yyyy.com -r "you@xxx.com" --output "OUTPUTFILENAME.xls.pgp" -a -s -e "FILE.xls"

Complete example whith passphrase file:

gpg --batch --yes --passphrase-fd 0 -u me@yyyy.com -r "you@xxx.com" --output "OUTPUTFILENAME.xls.pgp" -a -s -e "FILE.xls"< passphrase.txt

link|improve this answer
feedback

Just add the --yes option to you command line. The --yes option assumes yes for most questions which gpg will prompt for.

Source: http://www.gnupg.org/gph/de/manual/r1023.html

link|improve this answer
Thank you David – Ninu Jan 6 at 21:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.