vote up 1 vote down star

On a Linux desktop (RHEL4) I want to extract a range of bytes (typically less than 1000) from within a large file (>1 Gig). I know the offset into the file and the size of the chunk.

I can write code to do this but is there a command line solution?

Ideally, something like:

magicprogram --offset 102567 --size 253 < input.binary > output.binary
flag

2 Answers

vote up 6 vote down check

dd skip=102567 count=253 if=input.binary of=output.binary bs=1

link|flag
Thanks. Exactly what I wanted. – DanM Sep 14 at 19:36
vote up 1 vote down

The dd command can do all of this. Look at the seek and/or skip parameters as part of the call.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.