Linux/Parsing: Difference between revisions
< Linux
No edit summary |
No edit summary |
||
Line 37: | Line 37: | ||
** http://www.grymoire.com/Unix/Sed.html | ** http://www.grymoire.com/Unix/Sed.html | ||
[[Category:Linux/Bash]] | [[Category:Linux/Bash]] | ||
[[Category:Linux]] |
Revision as of 13:53, 1 April 2017
- sed + control characters
sed 's/\x00/controlcharwashere/g'
- slowing output
cat incoming.log | pv -qL 1000 | tee temp
sed -n '/Iowa/,/Montana/p'
- show as hex
od -t x1 -An