Linux/Parsing
< Linux
lines
- grep
- tail
tail tail -f # follow tail -n 10 # last 10 lines tail +3 # skip first 3 lines
delimiter
- cut
sed & awk
- sed + control characters
sed 's/\x00/controlcharwashere/g'
sed -n '/Iowa/,/Montana/p'
other
- slowing output
cat incoming.log | pv -qL 1000 | tee temp
- show as hex
od -t x1 -An