Hacker News new | ask | show | jobs
by tspiteri 3448 days ago
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 ...