Hacker News new | ask | show | jobs
by greenleafjacob 3448 days ago
Isn't this the same as:

    tail -c +$HEADERSIZE <foo
1 comments

The dd idiom can be used to split a file into parts with known block size, something like

    (dd bs=$SIZE1 count=1 of=file1; dd bs=$SIZE2 ...