editing a binary file

perryh at pluto.rain.com perryh at pluto.rain.com
Fri Dec 18 10:11:51 UTC 2009


Greg Larkin <glarkin at freebsd.org> wrote:
> ...
> > truncate -4 myfile should get rid of the last four bytes.  Maybe
> > there's a similar efficient way to truncate the start of a file.
>
> This should do it:
>
> dd if=oldfile of=newfile bs=1 skip=4

Or, perhaps marginally more efficient:

dd if=oldfile of=newfile bs=4 skip=1


More information about the freebsd-questions mailing list