DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T h

⟦e23e5dd0e⟧ TextFile

    Length: 896 (0x380)
    Types: TextFile
    Names: »help.c«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec8/uutty/help.c« 

TextFile

#include "uutty.h"
/* 
** The -h option triggers this routine.  We should try to
** keep it up to date, so users can find out easily what
** options are currently supported.
*/
help()
{
	P("usage: %s [-options] [device] [2>auditfile]",progname);
	P("options are:");
	P("\t-b<n>\tSet baud rate to <n>.");
	P("\t-c<n>\tCount to <n> before reads.");
	P("\t-e<msg>\tMessage to send to port before exiting.");
	P("\t-f\tFork (create subprocess) to start shells.");
	P("\t-h\tHelp--display this information.");
	P("\t-i<msg>\tMessage to send for initalizing port.");
	P("\t-l\tCreate uucp lockfiles for successful logins.");
	P("\t-n<msg>\tMessage to send to nudge the port.");
	P("\t-p<f>\tPort name is <f>.");
	P("\t-r<n>\tRaw I/O [default=1=true].");
	P("\t-s<n>\tSleep <n> seconds before reads.");
	P("\t-x<n>\tDebug level of <n>.");
	P("Note that error output [file 2] is used for debugging.");
}