1gpg-zip(1) General Commands Manual gpg-zip(1)
2
3
4
6 gpg-zip - encrypt or sign files into an archive
7
8
10 gpg-zip [OPTIONS] filename1 [filename2, ...] directory1 [directory2,
11 ...]
12
13
15 This manual page documents briefly the gpg-zip command.
16
17 gpg-zip encrypts or signs files into an archive. It is an gpg-ized tar
18 using the same format as PGP's PGP Zip.
19
20
22 -e, --encrypt
23 Encrypt data. This option may be combined with --symmetric (for
24 output that may be decrypted via a secret key or a passphrase).
25
26 -d, --decrypt
27 Decrypt data.
28
29 -c, --symmetric
30 Encrypt with a symmetric cipher using a passphrase. The default
31 symmetric cipher used is CAST5, but may be chosen with the
32 --cipher-algo option to gpg(1).
33
34 -s, --sign
35 Make a signature. See gpg(1).
36
37 -r, --recipient USER
38 Encrypt for user id USER. See gpg(1).
39
40 -u, --local-user USER
41 Use USER as the key to sign with. See gpg(1).
42
43 --list-archive
44 List the contents of the specified archive.
45
46 -o, --output FILE
47 Write output to specified file FILE.
48
49 --gpg GPG
50 Use the specified command instead of gpg.
51
52 --gpg-args ARGS
53 Pass the specified options to gpg(1).
54
55 --tar TAR
56 Use the specified command instead of tar.
57
58 --tar-args ARGS
59 Pass the specified options to tar(1).
60
61 -h, --help
62 Output a short usage information.
63
64 --version
65 Output the program version.
66
67
69 The program returns 0 if everything was fine, 1 otherwise.
70
71
73 Encrypt the contents of directory mydocs for user Bob to file test1:
74
75 gpg-zip --encrypt --output test1 --gpg-args -r Bob"" mydocs
76
77 List the contents of archive test1:
78
79 gpg-zip --list-archive test1
80
81
83 gpg(1), tar(1)
84
85
87 Copyright (C) 2005 Free Software Foundation, Inc. Please report bugs to
88 <bug-gnupg@gnu.org>.
89
90 This manpage was written by Colin Tuckley <colin@tuckley.org> and
91 Daniel Leidert <daniel.leidert@wgdd.de> for the Debian distribution
92 (but may be used by others).
93
94
95
96
97 November 2006 gpg-zip(1)