标签:style blog http color io ar 文件 art sp
下面表示将 dataset分割成小文件,每个10000行,以数字作为后缀形式,一共占两位
split -l 10000 dataset -d -a 2 partition_dataset_
如果有不明白的
split --help
或
man split
合并小文件为一个大文件:
find dir -type f -name "partition_dataset_*" -print | xargs cat > final_results
原文:http://blog.csdn.net/hongchangfirst/article/details/25244153
作者:hongchangfirst
hongchangfirst的主页:http://blog.csdn.net/hongchangfirst
标签:style blog http color io ar 文件 art sp
原文地址:http://blog.csdn.net/hongchangfirst/article/details/25244153