📜  ubuntu 创建存档拆分 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:24.242000             🧑  作者: Mango

代码示例1
# 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