X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=apps%2Fusage.c;h=07da7faebafcbc324680586f667c50933813504d;hb=82aed0c41cd917fdf9cdb20db788fe9da0662eba;hp=c0b81f376b052fd7a11d3a8f27761b35d7c188ce;hpb=3a074ca61fb0843c3c71bac45b07a6c1fcf1fe2e;p=sympathy.git diff --git a/apps/usage.c b/apps/usage.c index c0b81f3..07da7fa 100644 --- a/apps/usage.c +++ b/apps/usage.c @@ -10,6 +10,27 @@ static char rcsid[] = "$Id$"; /* * $Log$ + * Revision 1.9 2008/02/24 00:43:55 james + * *** empty log message *** + * + * Revision 1.8 2008/02/24 00:42:53 james + * *** empty log message *** + * + * Revision 1.7 2008/02/23 11:48:52 james + * *** empty log message *** + * + * Revision 1.6 2008/02/20 18:49:11 staffcvs + * *** empty log message *** + * + * Revision 1.5 2008/02/20 18:31:44 james + * *** empty log message *** + * + * Revision 1.4 2008/02/20 17:18:33 james + * *** empty log message *** + * + * Revision 1.3 2008/02/20 02:11:35 james + * *** empty log message *** + * * Revision 1.2 2008/02/16 10:58:52 james * *** empty log message *** * @@ -18,32 +39,39 @@ static char rcsid[] = "$Id$"; * */ +#include +#include void usage (void) { fprintf (stderr, "Usage:\n" - "sympathy -t [-l] [-d serialdev|-p] [-b baud] [-h] [-L log]\n" - "sympathy -s [-l] [-d serialdev|-p] [-b baud] [-h] [-L log] [-f] [-k skt]\n" - "sympathy [-s -c] [-l] [-d serialdev|-p] [-b baud] [-h] [-L log] [-k skt]\n" - "sympathy -c [-H] -k skt\n" - "sympathy -r id [-H]\n" + "sympathy -t [-K] [-d serialdev|-p] [-b baud] [-f] [-L log] [-u]\n" + "sympathy -s [-K] [-d serialdev|-p] [-b baud] [-f] [-L log] [-u] [-F]\n" + " [-k skt] [-n hlines]\n" + "sympathy [-s -c] [-K] [-d serialdev|-p] [-b baud] [-f] [-L log] [-u] [-k skt]\n" + " [-n hlines]\n" + "sympathy -c [-H] [-u] -k skt\n" + "sympathy -r id [-H] [-u]\n" + "sympathy {-l|-ls}\n" + "sympathy -h\n" "\n" "Main mode:\n" " -t terminal emulator mode: one process is started which reads from\n" " the serial device or ptty and writes to the users terminal.\n" - " -s server mode: a process is started (and daemonized unless -f is\n" + " -s server mode: a process is started (and daemonized unless -F is\n" " given) which listens on a socket, and reads from the serial\n" " device or ptty.\n" " -s -c server and client mode. Fork a server and connect a client\n" - " incompatible with -f. This is the default mode\n" + " incompatible with -F. This is the default mode\n" " -c client mode: connect to server mode process\n" " -r id client mode: connect to server mode process on socket\n" " ~/.sympathy/id\n" + " -l or -ls list active sockets in ~/.sympathy\n" "\n" "Options:\n" - " -l lock the serial device. By default sympathy checks that no\n" + " -K lock the serial device. By default sympathy checks that no\n" " other process has create a lock file, and temporarily ceases\n" " to access the serial port if it spots one. With this option\n" " sympathy creates a lock file and prevents other programs\n" @@ -54,14 +82,18 @@ usage (void) " no -d option is specified\n" " -b baud the baudrate to set. If omitted sympathy does not set\n" " a baudrate and uses the current setting\n" - " -h set RTS/CTS flowcontrol. By default sympathy disables flow\n" + " -f set RTS/CTS flowcontrol. By default sympathy disables flow\n" " control\n" " -k socket explicity set the name of the socket, by default\n" " sympathy will use ~/.sympathy/$pid\n" - " -f do not detach, run the server in the foreground\n" + " -F do not detach, run the server in the foreground\n" " -H instead of connecting the user's terminal to the session\n" " emit HTML of the current state of the screen on stdout\n" - " -L log activity on the device to the file log\n"); + " -L log activity on the device to the file log\n" + " -n hlines the number of lines of history to store in the\n" + " server, that are replayed on connexion\n" + " -u don't emit utf-8 instead map all non ascii characters as ?\n"); + exit (1); }