|
NAMEfilechan - File-writing backend for INNSYNOPSISfilechan [-d directory] [-f num-fields] [-m map-file] [-p pid-file]DESCRIPTIONfilechan reads lines from standard input and copies the initial fields in each line to the files named by the remaining fields on the line. filechan is intended to be called by innd as a channel feed. (It is not a full exploder and does not accept commands; see newsfeeds(5) for a description of the difference, and buffchan(8) for an exploder program.)The input is interpreted as a sequence of lines. Each line contains a fixed number of initial fields, followed by a variable number of filename fields. All fields in a line are separated by whitespace and do not contain any whitespace. The default number of initial fields is one. For each line of input, filechan writes the initial fields, separated by a space and followed by a newline, to each of the files named in the filename fields. When writing to a file, filechan opens it in append mode and tries to lock it and change the ownership to the user and group owning the directory where the file is being written. Because the time window in which a file is open is very small, complicated flushing and locking protocols have not been implemented and are not necessarily needed for the way filechan is called and works; mv(1) followed by sleep(1) for a couple of seconds is sufficient. OPTIONS
EXAMPLESIf filechan is invoked with "-f 2" and given the following input:news.software.nntp <1643@munnari.oz.au> foo uunet news.software.nntp <102060@litchi.foo.com> uunet munnari comp.sources.unix <999@news.foo.com> foo uunet munnari then the file foo in pathoutgoing will have these lines: news.software.nntp <1643@munnari.oz.au> comp.sources.unix <999@news.foo.com> the file munnari in pathoutgoing will have these lines: news.software.nntp <102060@litchi.foo.com> comp.sources.unix <999@news.foo.com> and the file uunet in pathoutgoing will have these lines: news.software.nntp <1643@munnari.oz.au> news.software.nntp <102060@litchi.foo.com> comp.sources.unix <999@news.foo.com> Using filechan this way can be done in newsfeeds with for instance: foo:*,@misc.*:Ap,Tm:filechan! munnari:*,@rec.*:Ap,Tm:filechan! uunet:*:Ap,Tm:filechan! filechan!:*:Tc,WGm*:<pathbin>/filechan -f 2 It will generate the examples above. See the "W" flag in newsfeeds(5) for how to parameter the output. HISTORYWritten by Robert Elz <kre@munnari.oz.au>, flags added by Rich $alz <rsalz@uunet.uu.net>. Rewritten into POD by Julien Elie.SEE ALSObuffchan(8), newsfeeds(5).
Visit the GSP FreeBSD Man Page Interface. |