[BACK]Return to sendbug.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / sendbug

Annotation of src/usr.bin/sendbug/sendbug.1, Revision 1.7

1.7     ! ray         1: .\" $OpenBSD: sendbug.1,v 1.6 2007/03/23 06:47:37 ray Exp $
1.1       ray         2: .\"
                      3: .\" Written by Raymond Lai <ray@cyth.net>.
                      4: .\" Public domain.
                      5: .\"
                      6: .Dd March 22, 2007
                      7: .Dt SENDBUG 1
                      8: .Os
                      9: .Sh NAME
                     10: .Nm sendbug
                     11: .Nd report a bug in
                     12: .Ox
                     13: .Sh SYNOPSIS
                     14: .Nm
1.5       ray        15: .Op Fl LPV
1.1       ray        16: .Sh DESCRIPTION
                     17: .Nm
                     18: is used to send bug reports to
                     19: .Ox .
                     20: Some system information is filled out in a temporary file,
                     21: which is then opened by an editor.
                     22: See
                     23: .Ev EDITOR
                     24: below,
                     25: for details of which editor, if any, is invoked.
                     26: .Pp
                     27: Once the bug report is filled out,
1.6       ray        28: it can be sent to the
1.1       ray        29: .Ox
1.6       ray        30: developers, re-edited, or aborted.
                     31: If aborted,
                     32: the report is not deleted and the pathname of the report is printed.
1.2       deraadt    33: .Pp
                     34: The options are as follows:
                     35: .Bl -tag -width Ds
                     36: .It Fl L
1.6       ray        37: Print the list of available categories.
1.2       deraadt    38: .It Fl P
1.6       ray        39: Generate and print the template with system information filled out.
1.2       deraadt    40: .It Fl V
1.6       ray        41: Print the version number.
1.2       deraadt    42: .El
                     43: .Pp
                     44: The bugs database can be queried using the online bug tracking system
                     45: available at
                     46: .Pa http://www.openbsd.org/query-pr.html .
                     47: This allows users to search for PRs based on either their PR number
                     48: or content.
1.1       ray        49: .Sh ENVIRONMENT
                     50: .Bl -tag -width Ds
                     51: .It Ev EDITOR
                     52: Specifies an editor to use.
                     53: If
                     54: .Ev EDITOR
                     55: is not set,
                     56: the default is
                     57: .Xr vi 1 .
1.4       ray        58: .It Ev PR_FORM
                     59: Filename of PR form to use instead of using the built-in form.
                     60: Such a PR form can be partially pre-completed to make the
                     61: process faster.
1.1       ray        62: .It Ev TMPDIR
                     63: Specifies a directory for temporary files to be created.
                     64: The default is
                     65: .Pa /tmp .
                     66: .El
1.7     ! ray        67: .Sh FILES
        !            68: .Bl -tag -width "/tmp/p.XXXXXXXXXX" -compact
        !            69: .It Pa /tmp/p.XXXXXXXXXX
        !            70: temporary PR report
1.1       ray        71: .Sh AUTHORS
                     72: .Nm
                     73: was written from scratch for the public domain by
                     74: .An Ray Lai Aq ray@cyth.net .