@ -21,6 +21,12 @@ Usage:
./zsplit file
合并
cat file.* >file
Tip:
这么合并可能会存在BUG,例如合并 file.1 file.2 ...file.10 file.11,此时cat的默认排序不一定是从1到11,
一个简单的解决办法,通过手动排序实现合并
cat file.1 file.2 ... file.10 file.11 > file
检查完整性
./sumcheck file