Answers for "ubuntu create archive split"

1

ubuntu create archive split

# First zip the file without compression
zip -0 big_file.zip big_file.iso

# Then split the zip
zip -s 1000m split_file big_file.zip

# To extract files pass unzip the first of the multizipped files 
# and it automatically processes all of the children
unzip split_file.zip
Posted by: Guest on December-12-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language