I have a block of text i'd like to change up:
^@^A^@jfits^@^A^@pin^@^A^@sadface^@^A^@secret^@^A^@test^@^A^@tools^@^A^@ttttfft^@^A^@tty^@^A^@vuln^@^A^@yes^@^
using sed i'd like to remove all the ^@^A^
(and variations of those chars) with a few spaces.
I tried:
cat -A file | sed 's/\^A\^\@/ /'
but thats obviously wrong, can someone help?