`gpg path/to/foo.gpg` decrypts to path/to/foo `gpg -d path/to/foo.gpg >target/path/foo` decrypts to the specified destination `gpg --multifile path/to/foo1.gpg path/to/foo2.gpg ...` puts all the decrypted files in path/to/ Is there any way to "bulk-decrypt" a bunch of files to one specified target directory? Thanks.