gpg-zip encrypts or signs files into an archive. It is an gpg-ized tar using the same format as used by PGP's PGP Zip.
gpg-zip is invoked this way:
gpg-zip [options] filename1 [filename2, ...] directory [directory2, ...]
gpg-zip understands these options:
--encrypt
-e
--decrypt
-d
--symmetric
-c
--sign
-s
--recipient
user-r
user--local-user
user-u
user--list-archive
--output
file-o
file--gpg
gpgcmd--gpg-args
args--tar
tarcmd--tar-args
args--version
--help
The program returns 0 if everything was fine, 1 otherwise.
Some examples:
Encrypt the contents of directory mydocs for user Bob to file test1:
gpg-zip --encrypt --output test1 --gpg-args -r Bob mydocs
List the contents of archive test1:
gpg-zip --list-archive test1