I'm trying to resolve a matryoshka_doll problem. I already solved it by creating a script
using unzip, but know I would like to use binwalk to achieve the same effect. Searching through the binwalk --help
I didn't find anything useful, but I could have missed something.
This is the command I'm using: binwalk -Me dolls.jpg
Which gives me a structure like:
./dolls_extracted/doll_2
./dolls_extracted/doll_2_extracted
./dolls_extracted/doll_2_extracted/doll_3
However I want a structure like this:
./doll_2
./doll_3
Can this be done using only binwalk ?