> I am trying to use a wildcard, but the option doesn't seem to be > allowed. I want to decrypt a whole folder of files daily, but the file > names will change daily. I want to just do something like:
gpg is used to a real shell, which expands wildcards. Fortunately you can partly correct this problem at least. > gpg -d -o c:\ftpdropfolder\*.pgp c:\savefolder\ Try something like: for %i in (*.pgp) do gpg --decrypt "%i" then perfect the syntax you need. HTH, --David. _______________________________________________ Gnupg-users mailing list [email protected] http://lists.gnupg.org/mailman/listinfo/gnupg-users
