diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2007-03-23 01:47:12 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2007-03-23 01:47:12 +0000 |
commit | 5a3343454cf3249bc0b525fdddd092c3fe9b36b2 (patch) | |
tree | d5f6ddc55a908c0942cd2cc15acdc508ff47c152 /usr.bin/sendbug/sendbug.1 | |
parent | 2f1b89da82e913d058c6809ba55a6ba5f0c443c3 (diff) |
Import public domain rewrite of sendbug, written by Ray Lai. =)
Replaces GNU sendbug/sendpr, the wonderful shell script that had
trouble dealing with signals, behaved differently depending on what
file it read upon startup, and suffered from issues plaguing most
large shell scripts.
OK deraadt@.
Diffstat (limited to 'usr.bin/sendbug/sendbug.1')
-rw-r--r-- | usr.bin/sendbug/sendbug.1 | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/usr.bin/sendbug/sendbug.1 b/usr.bin/sendbug/sendbug.1 new file mode 100644 index 00000000000..cea68d06f6c --- /dev/null +++ b/usr.bin/sendbug/sendbug.1 @@ -0,0 +1,47 @@ +.\" $OpenBSD: sendbug.1,v 1.1 2007/03/23 01:47:11 ray Exp $ +.\" +.\" Written by Raymond Lai <ray@cyth.net>. +.\" Public domain. +.\" +.Dd March 22, 2007 +.Dt SENDBUG 1 +.Os +.Sh NAME +.Nm sendbug +.Nd report a bug in +.Ox +.Sh SYNOPSIS +.Nm +.Sh DESCRIPTION +.Nm +is used to send bug reports to +.Ox . +Some system information is filled out in a temporary file, +which is then opened by an editor. +See +.Ev EDITOR +below, +for details of which editor, if any, is invoked. +.Pp +Once the bug report is filled out, +it is e-mailed to the +.Ox +developers. +.Sh ENVIRONMENT +.Bl -tag -width Ds +.It Ev EDITOR +Specifies an editor to use. +If +.Ev EDITOR +is not set, +the default is +.Xr vi 1 . +.It Ev TMPDIR +Specifies a directory for temporary files to be created. +The default is +.Pa /tmp . +.El +.Sh AUTHORS +.Nm +was written from scratch for the public domain by +.An Ray Lai Aq ray@cyth.net . |