使用
split
命令拆分文件split -C 100M large_file.txt stxt # 拆分文件large_file.txt, 每个100M, 前缀是stxt。
使用
cat
命令合并文件cat stxt* > new_file.txt # 将所有匹配到的文件合并。 cat file1 file2 > file # 合并file1,file2 到文件file。
- 引用
Linux中split大文件分割和cat合并文件详解
使用 split
命令拆分文件
split -C 100M large_file.txt stxt # 拆分文件large_file.txt, 每个100M, 前缀是stxt。
使用cat
命令合并文件
cat stxt* > new_file.txt # 将所有匹配到的文件合并。
cat file1 file2 > file # 合并file1,file2 到文件file。