27
13
According to this page, one can let tar create a tar archive "split" into 100 Mb files:
tar -c -M --tape-length=102400 --file=disk1.tar largefile.tgz
The problem is that this command will require you to interactively give a new filename for the next file, after the first file is filled.
Anybody knows of a way to skip this interactive step, and let tar do the "splitting" automatically?
Related to this: https://unix.stackexchange.com/q/61774/6860
– sampablokuper – 2018-03-15T13:31:04.013