Replaced \t with 2 spaces (and moved some other things around)

This commit is contained in:
N1xis10t 2021-08-25 17:14:11 -06:00 committed by GitHub
parent b0ec035704
commit 5b5e82c704
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

70
main.c
View file

@ -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"
"\t-f FILTERFILE specify filter file which contains filters separated\n" " -f FILTERFILE specify filter file which contains filters separated\n"
"\t by newlines\n" " by newlines\n"
"\t-D deduplicate filters\n" " -D deduplicate filters\n"
"\t-q do not print diagnostic output to stderr\n" " -q do not print diagnostic output to stderr\n"
"\t-x do not print onion names\n" " -x do not print onion names\n"
"\t-v print more diagnostic data\n" " -v print more diagnostic data\n"
"\t-o FILENAME output onion names to specified file (append)\n" " -o FILENAME output onion names to specified file (append)\n"
"\t-O FILENAME output onion names to specified file (overwrite)\n" " -O FILENAME output onion names to specified file (overwrite)\n"
"\t-F include directory names in onion names output\n" " -F include directory names in onion names output\n"
"\t-d DIRNAME output directory\n" " -d DIRNAME output directory\n"
"\t-t NUMTHREADS specify number of threads to utilise (default - CPU\n" " -t NUMTHREADS specify number of threads to utilise (default - CPU\n"
"\t core count or 1)\n" " core count or 1)\n"
"\t-j NUMTHREADS same as -t\n" " -j NUMTHREADS same as -t\n"
"\t-n NUMKEYS specify number of keys (default - 0 - unlimited)\n" " -n NUMKEYS specify number of keys (default - 0 - unlimited)\n"
"\t-N NUMWORDS specify number of words per key (default - 1)\n" " -N NUMWORDS specify number of words per key (default - 1)\n"
"\t-Z use \"slower\" key generation method (initial default)\n" " -Z use \"slower\" key generation method (initial default)\n"
"\t-z use \"faster\" key generation method (later default)\n" " -z use \"faster\" key generation method (later default)\n"
"\t-B use batching key generation method (>10x faster than\n" " -B use batching key generation method (>10x faster than\n"
"\t -z, current default)\n" " -z, current default)\n"
"\t-s print statistics each 10 seconds\n" " -s print statistics each 10 seconds\n"
"\t-S SECONDS print statistics every specified amount of seconds\n" " -S SECONDS print statistics every specified amount of seconds\n"
"\t-T do not reset statistics counters when printing\n" " -T do not reset statistics counters when printing\n"
"\t-y output generated keys in YAML format instead of\n" " -y output generated keys in YAML format instead of\n"
"\t dumping them to filesystem\n" " dumping them to filesystem\n"
"\t-Y [FILENAME [host.onion]]\n" " -Y [FILENAME [host.onion]]\n"
"\t parse YAML encoded input and extract key(s) to\n" " parse YAML encoded input and extract key(s) to\n"
"\t filesystem\n" " filesystem\n"
#ifdef PASSPHRASE #ifdef PASSPHRASE
"\t-p PASSPHRASE use passphrase to initialize the random seed with\n" " -p PASSPHRASE use passphrase to initialize the random seed with\n"
"\t-P same as -p, but takes passphrase from PASSPHRASE\n" " -P same as -p, but takes passphrase from PASSPHRASE\n"
"\t environment variable\n" " environment variable\n"
#endif #endif
"\t --rawyaml raw (unprefixed) public/secret keys for -y/-Y\n" " --rawyaml raw (unprefixed) public/secret keys for -y/-Y\n"
"\t (may be useful for tor controller API)\n" " (may be useful for tor controller API)\n"
"\t-h, --help print help to stdout and quit\n" " -h, --help print help to stdout and quit\n"
"\t --usage same as --help\n" " --usage same as --help\n"
"\t-V, --version print version information to stdout and exit\n" " -V, --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"