Difference between revisions of "Unix Tips"

From Projects and Notes
Jump to: navigation, search
(initial edit, adding binary char string strip notes)
(No difference)

Revision as of 13:49, 10 December 2013

Unix/Linux commands and stuff to remember.

Text Crap

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