Use the new EXISTS protocol command to determine whether a file is new
[libpwmd.git] / pwmc.1
blob1cce378b58dc368a0aa460878ad6c9fd08209523
1 .\" This program is free software; you can redistribute it and/or modify
2 .\" it under the terms of the GNU General Public License as published by
3 .\" the Free Software Foundation; either version 2 of the License, or
4 .\" (at your option) any later version.
5 .\" 
6 .\" This program is distributed in the hope that it will be useful,
7 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
8 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 .\" GNU General Public License for more details.
10 .\" 
11 .\" You should have received a copy of the GNU General Public License
12 .\" along with this program; if not, write to the Free Software
13 .\" Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
14 .de URL
15 \\$2 \(laURL: \\$1 \(ra\\$3
17 .if \n[.g] .mso www.tmac
18 .TH PWMD 1 "12 Jul 2007" "Password Manager Client" "Password Manager Client"
19 .SH NAME
21 pwmc \- send commands to pwmd
22 .SH SYNOPSIS
23 .B pwmc
24 [\-hv] [\-E] [\-s <socket>] [\-a [-P <pinentry_path>] [-t <seconds>] | \-p <password>] [\-S] [filename]
26 .SH DESCRIPTION
27 .B pwmc
28 is a
29 .BR libpwmd (3)
30 client for \fBpwmd\fR. Commands are read line-by-line from stdin until an EOF
31 occurs. Element values that contain newline or tab characters should be base64
32 encoded. The
33 .BR openssl (1)
34 utility can do this and can also make the base64 encoded string on one line
35 with the 'base64 -A' switch.
37 .SH OPTIONS
38 .TP
39 .I "\-E"
40 Exit after a command failure.
41 .TP
42 .I "\-s <socket>"
43 Connect to the specified socket. The default is \fB~/.pwmd/socket\fR.
44 .TP
45 .I "\-a"
46 Use 
47 .BR pinentry (1)
48 for password retrieval.
49 .TP
50 .I "\-P <path>"
51 The full path of the
52 .BR pinentry (1)
53 program. \fBlibpwmd\fP defaults to \fI/usr/bin/pinentry\fP.
54 .TP
55 .I "\-t <seconds>"
56 When opening a file and a password is required,
57 .BR pinentry (1)
58 will timeout after the specified amount of seconds. When saving a file and a
59 password is required, no timeout will be used even if specified.
60 .TP
61 .I "\-p <password>"
62 Use the specified password.
63 .TP
64 .I "\-S"
65 Send the SAVE command after EOF.
66 .TP
67 .I "\-v"
68 Version information.
69 .TP
70 .I "\-h"
71 Help text.
73 .SH EXAMPLES
74 To list the available accounts and use
75 .BR pinentry (1)
76 to get the password:
77 .RS
78 echo list | pwmc -a filename
79 .RE
81 To store an element path and save the file afterwards:
82 .RS
83 echo -e 'store isp\\tsmtp\\thostname\\tsomehost.com' | pwmc -S filename
84 .RE
86 Clear the file cache for a single file:
87 .RS
88 echo 'clearcache filename' | pwmc
89 .RE
91 Multiple commands in one instance:
92 .RS
93 echo -e 'get isp\\tsmtp\\thostname\\nget isp\\tusername' | pwmc filename
94 .RE
96 .SH FILES
97 .TP
98 .B ~/.pwmd/socket
99 Default socket to connect to.
101 .B /usr/bin/pinentry
102 Default location of the pinentry binary.
105 .SH AUTHOR
106 Ben Kibbey <bjk@luxsci.net>
108 .URL "http://bjk.sourceforge.net/pwmd/" "PWMD Homepage" .
110 .SH "SEE ALSO"
111 .BR pwmd (1),
112 .BR pinentry (1),
113 .BR openssl (1),
114 .BR libpwmd (3)