mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-04-22 14:59:11 +00:00
Revised helpfile style
~ Changed instances of two spaces back to tabs ~ Removed equals signs and commas ~ Also removed some extra spaces to avoid screen wrapping
This commit is contained in:
parent
49be9641ff
commit
28854e5fc1
1 changed files with 35 additions and 35 deletions
70
main.c
70
main.c
|
@ -86,43 +86,43 @@ static void printhelp(FILE *out,const char *progname)
|
||||||
"Usage: %s FILTER [FILTER...] [OPTION]\n"
|
"Usage: %s FILTER [FILTER...] [OPTION]\n"
|
||||||
" %s -f FILTERFILE [OPTION]\n"
|
" %s -f FILTERFILE [OPTION]\n"
|
||||||
"\n"
|
"\n"
|
||||||
" -f, =FILTERFILE specify filter file which contains filters separated\n"
|
"\t-f FILTERFILE specify filter file which contains filters separated\n"
|
||||||
" by newlines\n"
|
"\t by newlines\n"
|
||||||
" -D, deduplicate filters\n"
|
"\t-D deduplicate filters\n"
|
||||||
" -q, do not print diagnostic output to stderr\n"
|
"\t-q do not print diagnostic output to stderr\n"
|
||||||
" -x, do not print onion names\n"
|
"\t-x do not print onion names\n"
|
||||||
" -v, print more diagnostic data\n"
|
"\t-v print more diagnostic data\n"
|
||||||
" -o, =FILENAME output onion names to specified file (append)\n"
|
"\t-o FILENAME output onion names to specified file (append)\n"
|
||||||
" -O, =FILENAME output onion names to specified file (overwrite)\n"
|
"\t-O FILENAME output onion names to specified file (overwrite)\n"
|
||||||
" -F, include directory names in onion names output\n"
|
"\t-F include directory names in onion names output\n"
|
||||||
" -d, =DIRNAME output directory\n"
|
"\t-d DIRNAME output directory\n"
|
||||||
" -t, =NUMTHREADS specify number of threads to utilise (default - CPU\n"
|
"\t-t NUMTHREADS specify number of threads to utilise (default - CPU\n"
|
||||||
" core count or 1)\n"
|
"\t core count or 1)\n"
|
||||||
" -j, =NUMTHREADS same as -t\n"
|
"\t-j NUMTHREADS same as -t\n"
|
||||||
" -n, =NUMKEYS specify number of keys (default - 0 - unlimited)\n"
|
"\t-n NUMKEYS specify number of keys (default - 0 - unlimited)\n"
|
||||||
" -N, =NUMWORDS specify number of words per key (default - 1)\n"
|
"\t-N NUMWORDS specify number of words per key (default - 1)\n"
|
||||||
" -Z, use \"slower\" key generation method (initial default)\n"
|
"\t-Z use \"slower\" key generation method (initial default)\n"
|
||||||
" -z, use \"faster\" key generation method (later default)\n"
|
"\t-z use \"faster\" key generation method (later default)\n"
|
||||||
" -B, use batching key generation method (>10x faster than\n"
|
"\t-B use batching key generation method (>10x faster than\n"
|
||||||
" -z, current default)\n"
|
"\t -z, current default)\n"
|
||||||
" -s, print statistics each 10 seconds\n"
|
"\t-s print statistics each 10 seconds\n"
|
||||||
" -S, =SECONDS print statistics every specified amount of seconds\n"
|
"\t-S SECONDS print statistics every specified amount of seconds\n"
|
||||||
" -T, do not reset statistics counters when printing\n"
|
"\t-T do not reset statistics counters when printing\n"
|
||||||
" -y, output generated keys in YAML format instead of\n"
|
"\t-y output generated keys in YAML format instead of\n"
|
||||||
" dumping them to filesystem\n"
|
"\t dumping them to filesystem\n"
|
||||||
" -Y, =[FILENAME [host.onion]]\n"
|
"\t-Y [FILENAME [host.onion]]\n"
|
||||||
" parse YAML encoded input and extract key(s) to\n"
|
"\t parse YAML encoded input and extract key(s) to\n"
|
||||||
" filesystem\n"
|
"\t filesystem\n"
|
||||||
#ifdef PASSPHRASE
|
#ifdef PASSPHRASE
|
||||||
" -p, =PASSPHRASE use passphrase to initialize the random seed with\n"
|
"\t-p PASSPHRASE use passphrase to initialize the random seed with\n"
|
||||||
" -P, same as -p, but takes passphrase from PASSPHRASE\n"
|
"\t-P same as -p, but takes passphrase from PASSPHRASE\n"
|
||||||
" environment variable\n"
|
"\t environment variable\n"
|
||||||
#endif
|
#endif
|
||||||
" --rawyaml raw (unprefixed) public/secret keys for -y/-Y\n"
|
"\t --rawyaml raw (unprefixed) public/secret keys for -y/-Y\n"
|
||||||
" (may be useful for tor controller API)\n"
|
"\t (may be useful for tor controller API)\n"
|
||||||
" -h, --help print help to stdout and quit\n"
|
"\t-h --help print help to stdout and quit\n"
|
||||||
" --usage same as --help\n"
|
"\t --usage same as --help\n"
|
||||||
" --version print version information to stdout and exit\n"
|
"\t --version print version information to stdout and exit\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Report bugs at: <https://github.com/cathugger/mkp224o/issues>\n"
|
"Report bugs at: <https://github.com/cathugger/mkp224o/issues>\n"
|
||||||
"mkp224o home page: <https://github.com/cathugger/mkp224o>\n"
|
"mkp224o home page: <https://github.com/cathugger/mkp224o>\n"
|
||||||
|
|
Loading…
Add table
Reference in a new issue