View Single Post
  #9  
Old 10-20-2012, 01:29 PM
nhjm449 nhjm449 is offline
Junior Member
 
Join Date: Oct 2012
Posts: 1
nhjm449 is on a distinguished road
Default

Re: Help getting greek channel to work with rtmpdump


Quote:
Originally Posted by svnpenn View Post
You can actually do this without Bash, you just encode the Carriage Return as %d
Please note that the only reason "%d" works (as opposed to "%0d") is because it's at the end of the string.

If you were to do somehting like "foo%Dabc", "%Da" would be replaced with 0xda and you'd lose your "a".
If you were to do something like "foo%Dzabc", "%Dz" would be replaced with 0x0d and you'd lose your "z".
Reply With Quote