You are not logged in.
I use this to encrypt files.
mate-terminal -x gpg -c %f
What should I use to decrypt them and send output to a file?
Ubuntu-Mate 24.04
Offline
From gpg man page:
--decrypt
-d Decrypt the file given on the command line (or STDIN if no file is specified) and write it to STDOUT (or the file specified with --output). If the decrypted file is signed, the signature is also verified. This command differs from the default operation, as it never writes to the filename which is included in the file and it rejects files that don't begin with an encrypted message.--output file
-o file Write output to file. To write to stdout use - as the filename.
So, could it be something akin to:
mate-terminal -x gpg -d %f -o %f_decrypted
Just guessing here, man gpg is quite a read!
Offline
[ Generated in 0.006 seconds, 7 queries executed - Memory usage: 517.19 KiB (Peak: 532.25 KiB) ]