Quote:
|
Originally Posted by mackenga
I suggest:
tar -c music | gzip -9 > backup.tgz
|
this is simpler
gzip:
tar czvf backup.tgz music/
bzip:
tar cjvf backup.tgz music/
for the disk size discrimination you can use du and have a script that makes subdirectories up to some size and then do the tar on those directories