I have a very huge file (500GB) to upload, and to easy a bit this task I want to cut this file in pieces.
Unfortunately I don't have 500GB free space on my hard drive, so I would like a way to split the file in multiple parts, without needing to free 500GB.
I though about a script with dd
to select data chunk and export it, but I don't know of a way to delete the read data from the original file.
I'm okay with a C
code to compile, even if it can take 10 days to run.
Thanks !