|
NAMExin - split standard input and pipe into a commandSYNOPSISxin [ -h | -v ]xin [ -b size | -l lines | -p size | -f code ] -e command [ arguments... ] DESCRIPTIONxin reads from standard input and splits the data up into sections, piping each section to a separate command. If both -b and -l are used xin will split the section as soon as either limit is reached. A command will only be executed when there is data waiting to be written.If command exits or closes the pipe before the entire section is written an error will occur and xin will exit. There is no way of recovering from this situation without losing data since xin cannot know if the data has been read and processed - this is a limitation of pipes. A size may have a multiplier suffix: 'b' for 512, 'k' for 1024, and 'm' for 1024k. OPTIONS-b, --bytesLimit each section to size bytes.-l, --linesLimit each section to lines lines.-p, --paddingZero extend any section of input written to command to a multiple of size bytes. This option can be used by itself for padding a data stream without splitting. The default is no padding.-f, --fatal-codeWhen command exits with error code xin will exit with a fatal error. The default is 255.-e, --execUse to denote the end of xin arguments and the beginning of command.-V, --versionDisplay version and exit.-h, --helpDisplay usage information and exit.AUTHORMark Pulford <mark@kyne.com.au>SEE ALSOsplit(1).
Visit the GSP FreeBSD Man Page Interface. |