diff options
author | David Phillips <david@yeah.nah.nz> | 2019-03-11 16:22:36 +1300 |
---|---|---|
committer | David Phillips <david@yeah.nah.nz> | 2019-03-11 16:22:36 +1300 |
commit | b6f427e2f75a39d1d64146302828f54de87d02aa (patch) | |
tree | cf3c97fcebdd42d9b05d115df35322baba7a8109 | |
parent | 7073b163a2cf36c281dd2efdfab7148e1ea32921 (diff) | |
download | sand-leek-b6f427e2f75a39d1d64146302828f54de87d02aa.tar.xz |
Improve help text
-rw-r--r-- | sand-leek.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sand-leek.c b/sand-leek.c index ff96448..da51078 100644 --- a/sand-leek.c +++ b/sand-leek.c @@ -269,9 +269,11 @@ void die_usage(const char *argv0) { fprintf(stderr, "usage: %s [-t threads] [-A] -s search\n" - "searches for keys for onion addresses beginning with `search`.\n" - "Specifying -A disables the use of ANSI escape sequences, which cause\n" - "are not interpreted on some terminals (powershell, cmd.exe)\n", + "Options:\n" + " -t threads use `threads` worker threads (default: 1)\n" + " -A disable ANSI escape sequences in stderr output\n" + " -s search search for keys to onion addresses beginning with `search`\n" + "\n", argv0 ); exit(1); |