fixlen 3plumb 2012-09-09

NAME

fixlen - split up input into fixed len records

SYNPOSIS

[fixlen len=LEN]

[fixlen LEN]

               +--------+
0 (stdin) ---->| fixlen |----> (stdout) 1
               +--------+

DESCRIPTION

Fixlen splits up its input into fixed length records. Useful for processing streams containing fixed size records, read from real processes.

eof handling

Default.

blocking/flow control

Default.

buffering

Buffers at most one partial record.

EXAMPLE

Read 16 bytes long records, convert them to hex and process them with awk:
	{./dump_records} | [fixlen len=16] | [dump format=hex] | [affix suffix="\n"] | {awk -f proc.awk}

SEE ALSO

fixlen 3plumb 2012-09-09