Unix Tips

From Projects and Notes
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