fixlen 3plumb | 2012-09-09 |
---|
fixlen - split up input into fixed len records
[fixlen len=LEN]
[fixlen LEN]
+--------+ 0 (stdin) ---->| fixlen |----> (stdout) 1 +--------+
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.
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}
fixlen 3plumb | 2012-09-09 |
---|