-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathusage-tr.c
31 lines (28 loc) · 897 Bytes
/
usage-tr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
* Copyright (c) 2009 - 2011 Miek Gieben
* License: GPLv3(+), see LICENSE for details
*/
#include "rdup-tr.h"
extern char *PROGNAME;
void usage_tr(FILE * f)
{
fprintf(f, _("USAGE: %s [OPTION]... \n"), PROGNAME);
fputs(_("\
Translate rdup output into something else.\n\
\n\
\n\
OPTIONS:\n\
-c\t\tforce output to tty\n\
-X FILE\t\tencrypt all paths with AES and the key from FILE\n\
-Y FILE\t\tdecrypt all paths with AES and the key from FILE\n\
-h\t\tthis help\n\
-V\t\tprint version\n\
-O FMT\t\toutput format: pax, cpio, tar or rdup* (* = default)\n\
\t\trdup uses format: \"%p%T %b %u %g %l %s\\n%n%C\"\n\
-L\t\tset input format to a list of pathnames\n\
-v\t\tbe more verbose and print processed files to stderr\n\
\n\
Report bugs to <[email protected]>\n\
Licensed under the GPL version 3.\n\
See the file LICENSE in the source distribution of rdup.\n"), f);
}