blob: d3d1e25ab49569cfaa2b1b45997c59c3c05a0e78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
const char *usage_msg[] = {
" -a: convert EOLs in text files.",
" -aa: convert EOLs in ALL files.",
" -d output-dir: set output directory (created if needed).",
" -e: extract files (redundant; this is the default action).",
" -k: keep trailing periods (dots) in filenames.",
" -l: list files in archive (filenames only).",
" -L: use lowercase filenames.",
" -o: overwrite files (do not create file~ backups).",
" -p: extract to stdout (enables -q).",
" -q: quiet: don't print filenames during extraction.",
" -t: test archive.",
" -v: verbose listing of archive contents.",
" -x wildcard: exclude <wildcard>. may be given multiple times.",
(const char*)0
};
|