字體:小 中 大 |
|
|
|
| 2021/10/15 17:53:03瀏覽79|回應0|推薦0 | |
|
ref:
https://www.jinnsblog.com/2018/03/linux-tar-and-split-cat-example.html
將大檔案分割成小檔
split -b 100MB android_bsp.tar "android_bsp.tar_"
將小檔案合併
cat android_bsp.tar_* > android_bsp.tar
壓縮檔案並同時進行分割
tar zcvf - android_bsp/ | split -b 1000MB - "android_bsp.tar_"
還原分割檔並同時進行解壓縮
cat android_bsp.tar_* | tar -zxvf -
|
|
| ( 不分類|不分類 ) |










