perl -pi -e 's|\x20|; s|\x90|' log.bin
gives me this error
Backslash found where operator expected at -e line 1, near "s|\x20|; s|\"
syntax error at -e line 1, near "s|\x20|; s|\"
Execution of -e aborted due to compilation errors.
What am I doing wrong? the line intended to replace all bytes with 0x20 to 0x90…
You have 2 half statements, instead of one complete one. You’re probably looking for