source: trunk/minix/man/man1/logger.1@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 3.5 KB
Line 
1.\" Copyright (c) 1983, 1990, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\" notice, this list of conditions and the following disclaimer in the
11.\" documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\" must display the following acknowledgement:
14.\" This product includes software developed by the University of
15.\" California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\" may be used to endorse or promote products derived from this software
18.\" without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\" from: @(#)logger.1 8.1 (Berkeley) 6/6/93
33.\" Modified for Minix porting by G. Falzoni <gfalzoni@inwind.it>
34.\" $Id: logger.1,v 1.1 2006/04/03 14:59:51 beng Exp $
35.\"
36.\" Local macros
37.de Xr
38.BR \\$1 (\\$2)\\$3
39..
40.de LB
41.TP \\$1
42\\fB\\$2\\fR
43\\$3
44..
45.de LI
46.TP \\$1
47\\fI\\$2\\fR
48\\$3
49..
50.de LR
51.TP \\$1
52\\fR\\$2\\fR
53\\$3
54..
55.\" end local macros
56.DD June 6, 1993
57.TH LOGGER 1 "Jan. 18, 2000"
58.\" Os BSD 4.3
59.SH NAME
60logger \- make entries in the system log
61.SH SYNOPSIS
62logger
63.RB [ \-i ]
64.RB [ \-f " " file ]
65.RB [ \-p " " pri ]
66.RB [ \-t " " tag ]
67.B message ...
68.SH DESCRIPTION
69Logger provides a shell command interface to the
70.Xr syslog 3
71system log module.
72.PP
73The following options are available to control message formatting:
74.PP
75.LB 9 -i "Log the process id of the logger process with each line."
76.\" LB 9 -s "Log the message to standard error, as well as the system log."
77.LB 9 "-f file" "Log the specified file."
78.LB 9 "-p pri" "Enter the message with the specified priority.
79The priority may be specified numerically or as a `facility.level'
80pair. For example, `\-p local3.info' logs the message(s) as
81.BR info rmational
82level in the
83.B local3
84facility. The default is `user.notice'.
85.LB 9 "-t tag" "Mark every line in the log with the specified
86.BR tag .
87.LB 9 message "Write the message to log. If not specified, and the"
88.B \-f
89flag is not provided, standard input is logged.
90.PP
91The logger utility exits 0 on success, and >0 if an error occurs.
92.SH EXAMPLES
93.PP
94logger System rebooted
95.PP
96logger \-p local0.notice \-t HOSTIDM \-f /dev/idmc
97.SH SEE ALSO
98.Xr syslog 3 ,
99.Xr syslogd 8 .
100.SH STANDARDS
101The logger command is expected to be IEEE Std1003.2 (`POSIX') compatible.
Note: See TracBrowser for help on using the repository browser.