Command line solution for removing parts from a binary file?
- by zsero
I have a binary file and I would like to remove parts from. By removing I mean deleting those parts and thus making the file's size smaller.
The parts would be between two ASCII strings. So, for example the file would look like this
........ start ABCD end ..... start EFGH end ..... start IJKL end ...........
So in this file, I would like to…