[go: up one dir, main page]

File: usage-tr.c

package info (click to toggle)
rdup 1.1.11-1.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,340 kB
  • ctags: 259
  • sloc: ansic: 3,840; sh: 3,361; exp: 271; makefile: 78; ruby: 36; perl: 4
file content (32 lines) | stat: -rw-r--r-- 889 bytes parent folder | download | duplicates (2)
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
32
/*
 * Copyright (c) 2009 - 2011 Miek Gieben
 * See LICENSE for the license
 */

#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 <miek@miek.nl>\n\
Licensed under the GPL version 3.\n\
See the file LICENSE in the source distribution of rdup.\n"), f);
}