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

Annotation of src/usr.bin/logger/logger.1, Revision 1.4

1.4     ! aaron       1: .\"    $OpenBSD: logger.1,v 1.3 1998/09/26 19:55:00 aaron Exp $
1.1       deraadt     2: .\"    $NetBSD: logger.1,v 1.4 1994/12/22 06:26:59 jtc Exp $
                      3: .\"
                      4: .\" Copyright (c) 1983, 1990, 1993
                      5: .\"    The Regents of the University of California.  All rights reserved.
                      6: .\"
                      7: .\" Redistribution and use in source and binary forms, with or without
                      8: .\" modification, are permitted provided that the following conditions
                      9: .\" are met:
                     10: .\" 1. Redistributions of source code must retain the above copyright
                     11: .\"    notice, this list of conditions and the following disclaimer.
                     12: .\" 2. Redistributions in binary form must reproduce the above copyright
                     13: .\"    notice, this list of conditions and the following disclaimer in the
                     14: .\"    documentation and/or other materials provided with the distribution.
                     15: .\" 3. All advertising materials mentioning features or use of this software
                     16: .\"    must display the following acknowledgement:
                     17: .\"    This product includes software developed by the University of
                     18: .\"    California, Berkeley and its contributors.
                     19: .\" 4. Neither the name of the University nor the names of its contributors
                     20: .\"    may be used to endorse or promote products derived from this software
                     21: .\"    without specific prior written permission.
                     22: .\"
                     23: .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     24: .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     25: .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     26: .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     27: .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     28: .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     29: .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     30: .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     31: .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     32: .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     33: .\" SUCH DAMAGE.
                     34: .\"
                     35: .\"    @(#)logger.1    8.1 (Berkeley) 6/6/93
                     36: .\"
                     37: .Dd June 6, 1993
                     38: .Dt LOGGER 1
                     39: .Os BSD 4.3
                     40: .Sh NAME
                     41: .Nm logger
                     42: .Nd make entries in the system log
                     43: .Sh SYNOPSIS
                     44: .Nm logger
                     45: .Op Fl is
                     46: .Op Fl f Ar file
                     47: .Op Fl p Ar pri
                     48: .Op Fl t Ar tag
                     49: .Op Ar message ...
                     50: .Sh DESCRIPTION
1.3       aaron      51: .Nm logger
1.1       deraadt    52: provides a shell command interface to the
                     53: .Xr syslog  3
                     54: system log module.
                     55: .Pp
                     56: Options:
                     57: .Bl -tag -width "message"
                     58: .It Fl i
1.3       aaron      59: Log the process ID of the logger process
1.1       deraadt    60: with each line.
                     61: .It Fl s
                     62: Log the message to standard error, as well as the system log.
                     63: .It Fl f Ar file
                     64: Log the specified file.
                     65: .It Fl p Ar pri
                     66: Enter the message with the specified priority.
                     67: The priority may be specified numerically or as a ``facility.level''
                     68: pair.
                     69: For example, ``\-p local3.info'' logs the message(s) as
                     70: .Ar info Ns rmational
                     71: level in the
                     72: .Ar local3
                     73: facility.
                     74: The default is ``user.notice.''
                     75: .It Fl t Ar tag
                     76: Mark every line in the log with the specified
                     77: .Ar tag  .
                     78: .It Ar message
                     79: Write the message to log; if not specified, and the
                     80: .Fl f
                     81: flag is not
                     82: provided, standard input is logged.
                     83: .El
                     84: .Pp
                     85: The
                     86: .Nm logger
1.3       aaron      87: utility exits 0 on success or >0 if an error occurred.
1.1       deraadt    88: .Sh EXAMPLES
                     89: .Bd -literal -offset indent -compact
                     90: logger System rebooted
                     91:
                     92: logger \-p local0.notice \-t HOSTIDM \-f /dev/idmc
                     93: .Ed
                     94: .Sh SEE ALSO
                     95: .Xr syslog 3 ,
                     96: .Xr syslogd 8
                     97: .Sh STANDARDS
                     98: The
                     99: .Nm logger
                    100: utility conforms to
                    101: .St -p1003.2-92 .