Pack the Large Size of Folder into the tar File
作者:XD / 发表: 2022年7月31日 21:04 / 更新: 2022年7月31日 21:07 / 编程笔记 / 阅读量:1364
Pack the Large Size of the Folder into the tar File.
# archive the data into tar and split into 10GB slices
tar cvf - dir1 dir2 file1 file2 | split -b 10G -d - folder_name.tar.
# extract the data
cat folder_name.tar.* | tar xvf -