diff options
| author | Simon Tatham <anakin@pobox.com> | 2004-04-01 18:00:12 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2004-04-01 18:00:12 +0000 |
| commit | 0e1a1c5ae485e5d62f811992acee6b20f2bd495f (patch) | |
| tree | 3b955f9c084a65de8333fb9f47be548d0eaa44ae | |
| parent | 74b6ce38fefd5bebbfadf8b3a17992c2176c0c14 (diff) | |
| download | halibut-0e1a1c5ae485e5d62f811992acee6b20f2bd495f.zip halibut-0e1a1c5ae485e5d62f811992acee6b20f2bd495f.tar.gz halibut-0e1a1c5ae485e5d62f811992acee6b20f2bd495f.tar.bz2 halibut-0e1a1c5ae485e5d62f811992acee6b20f2bd495f.tar.xz | |
Help and usage messages.
[originally from svn r4026]
| -rw-r--r-- | help.c | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -6,12 +6,21 @@ #include "halibut.h" static char *helptext[] = { - "FIXME: help text goes here", + "usage: halibut [options] files", + "options: --text[=filename] generate plain text output", + " --html[=filename] generate XHTML output", + " --winhelp[=filename] generate Windows Help output", + " --man[=filename] generate man page output", + " -Cfoo:bar:baz append \\cfg{foo}{bar}{baz} to input", + " --precise report column numbers in error messages", + " --help display this text", + " --version display version number", + " --licence display licence text", NULL }; static char *usagetext[] = { - "FIXME: usage text goes here", + "usage: halibut [--format[=filename]] [-Cconfig...] file.but [file.but...]", NULL }; |