[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.3

1.3     ! deraadt     1: .\" $OpenBSD: sendbug.1,v 1.2 2007/03/23 02:45:40 deraadt 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
1.2       deraadt    11: .Op Fl LVP
1.1       ray        12: .Nd report a bug in
                     13: .Ox
                     14: .Sh SYNOPSIS
                     15: .Nm
                     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,
                     28: it is e-mailed to the
                     29: .Ox
                     30: developers.
1.2       deraadt    31: .Pp
                     32: The options are as follows:
                     33: .Bl -tag -width Ds
                     34: .It Fl L
                     35: Print the list of available catagories and do nothing else.
                     36: .It Fl P
                     37: Prints the template and do nothing else.
                     38: .It Fl V
                     39: Prints the version number.
                     40: .El
                     41: .Pp
                     42: The bugs database can be queried using the online bug tracking system
                     43: available at
                     44: .Pa http://www.openbsd.org/query-pr.html .
                     45: This allows users to search for PRs based on either their PR number
                     46: or content.
1.1       ray        47: .Sh ENVIRONMENT
                     48: .Bl -tag -width Ds
                     49: .It Ev EDITOR
                     50: Specifies an editor to use.
                     51: If
                     52: .Ev EDITOR
                     53: is not set,
                     54: the default is
                     55: .Xr vi 1 .
                     56: .It Ev TMPDIR
                     57: Specifies a directory for temporary files to be created.
                     58: The default is
                     59: .Pa /tmp .
1.3     ! deraadt    60: .It Ev PR_FORM
        !            61: Filename of PR form to use instead of using the built-in form.
        !            62: Such a PR form can be partially pre-completed to make the
        !            63: process faster.
1.1       ray        64: .El
                     65: .Sh AUTHORS
                     66: .Nm
                     67: was written from scratch for the public domain by
                     68: .An Ray Lai Aq ray@cyth.net .