I have a 588Ko file, and I want to extract bytes from 0x7E8D6 to 0x8AD5D.
I tried :
dd if=file of=result bs=50311 count=1 skip=518358
- 50311 stands for 0x8AD5D - 0x7E8D6
- 518358 stands for 0x7E8D6 (from where I want to cut)
dd tells me that it can't skip to the specified offset. What can I do? Is there any other utility to do it?