Link to home
Start Free TrialLog in
Avatar of Ralph Gould
Ralph GouldFlag for United States of America

asked on

folder level file decryption vs file-by-file

I have a large file containing many sub-folders & files (*.gpg) that are encrypted using gpg. I would like to decrypt them in place and remove the .gpg extension. All have the same passcode. My question is: can I decrypt all files in a folder, at the folder level by using a wildcard (*.gpg), or must I do each file in the folder individually?

my GnuPG command line looks something like this:
gpg  --batch --passphrase-fd 0 --decrypt *.gpg < pass.txt

if possible, a little help with the syntax would be appreciated
ASKER CERTIFIED SOLUTION
Avatar of skullnobrains
skullnobrains

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Ralph Gould

ASKER

thanks that worked