压缩与解压缩
zip格式
压缩
zip -r package.zip ./*zip -r package.zip ./* -x ./*.xlsxzip -r package.zip ./* -x "./1.xlsx" -x "./2.xlsx"zip -r package.zip ./* -x "./models/*"解压缩
tar格式
打包/压缩
解包/解压缩
分卷
最后更新于
unzip something.zipunzip -d /path/to/dir something.ziptar -cvf package.tar /path/to/data1.csv /path/to/data2.txttar -cvf package.tar ./*tar -czvf package.tar.gz ./*tar -czvf package.tar.gz --exclude=/path/to/file ./*tar -czvf package.tar.gz --exclude=models ./*tar -czvf package.tar.gz --exclude=models --exclude=venv ./*tar -xzvf package.tar.gztar -xvf package.tar -C /path/to/savetar -zcvf hello.tar.gz hellosplit -b 100M -d -a 1 hello.tar.gz hello.tar.gz.-rw-r--r-- 1 root root 104857600 Dec 25 16:54 hello.tar.gz.0
-rw-r--r-- 1 root root 104857600 Dec 25 16:54 hello.tar.gz.1
-rw-r--r-- 1 root root 104857600 Dec 25 16:54 hello.tar.gz.2
-rw-r--r-- 1 root root 104857600 Dec 25 16:54 hello.tar.gz.3
-rw-r--r-- 1 root root 104857600 Dec 25 16:55 hello.tar.gz.4
-rw-r--r-- 1 root root 104857600 Dec 25 16:55 hello.tar.gz.5
-rw-r--r-- 1 root root 104857600 Dec 25 16:55 hello.tar.gz.6
-rw-r--r-- 1 root root 19020093 Dec 25 16:55 hello.tar.gz.7tar -zcvf - hello | split -b 100M -d -a 1 - hello.tar.gz.cat hello.tar.gz.* | tar -zxv