1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
--- /dev/null
+++ b/flog.1
@@ -0,0 +1,40 @@
+.TH FLOG 1 "March 2008"
+.SH NAME
+flog \- dump STDIN to file and reopen on SIGHUP
+.SH SYNOPSIS
+.B flog
+[
+.B \-t
+] [
+.B \-T
+.I format
+] [
+.B \-l
+.I number
+] [
+.B \-F
+.I fifo
+] [
+.B \-p
+.I pidfile
+]
+.I logfile
+.SH DESCRIPTION
+.B flog
+(file logger) reads input from STDIN and writes to a file. When a SIGHUP
+is received, the file will be reopened, allowing for log rotation.
+.SH OPTIONS
+.IP \-t
+prepend each line with "YYYYMMDD;HH:MM:SS: "
+.IP \-T\ \fIformat\fP
+prepend each line with specified strftime(3) format
+.IP \-l\ \fInumber\fP
+log file length limit (force truncation)
+.IP \-F\ \fIfifo\fP
+read from fifo instead of pipe
+.IP \-p\ \fIpidfile\fP
+create pid file
+.SH AUTHOR
+Fredrik Sjoholm <fredrik@sjoholm.com>
+.SH LICENSE
+Licensed under the GNU General Public License
|