Unix Tips

From Projects and Notes
Revision as of 13:49, 10 December 2013 by Donald (Talk | contribs) (initial edit, adding binary char string strip notes)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Unix/Linux commands and stuff to remember.

Text Crap

  • Strip out binary characters from a text file
    • strings <filename>
    • tr -dc '[:print:]' < infile > outfile