I need to substitute all hex C7 values in a file with a pipe. I tried substituting with sed, and it doesn't seem to recognize it:
sed 's/\0xC7/|/g' test.dat
sed 's/\xC7/|/g' test.dat
and many other variations.
Any one know how I can do this?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.