linux下如何使用split

答: 切割文件hello,以每个文件最大10MiB来切割,切割好的文件名前缀为hello.,后缀为二位的数字,切割之后的名字为hello.01,hello.02等等

    split -b 10M -d hello hello.   

原文地址:https://www.cnblogs.com/dakewei/p/10268367.html