View Single Post
  #16  
Old 06-20-2012, 12:05 AM
svnpenn svnpenn is offline
Banned
 
Join Date: Apr 2011
Location: Dallas
Posts: 757
svnpenn is on a distinguished road
Default

Re: AdobeHDS script helpers


github.com/svnpenn/dotfiles/commit/1667

Quote:
Eliminate problems with binary data

By using

tr '\0' '\n'

only null bytes are being removed. Nonprinting characters other than null have
the possibility of crashing the script. Using "cat -v" eliminates this
possibility by using ^ and M- notation to represent nonprinting characters.
Reply With Quote