本文主要是介绍shell命令之split,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
听人说做文本分类时处理100G的文本文件,居然不用大数据,处理方法就是用shell的split去分割成若干小文件。
split命令
NAMEsplit - split a file into piecesSYNOPSISsplit [OPTION] [INPUT [PREFIX]]DESCRIPTIONOutput fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default size is 1000 lines, and default PREFIX is‘x’. With no INPUT, or when INPUT is -, read standard input.Mandatory arguments to long options are mandatory for short options too.-a, --suffix-length=Nuse suffixes of length N (default 2)-b, --bytes=SIZEput SIZE bytes per output file-C, --line-bytes=SIZEput at most SIZE bytes of lines per output file-d, --numeric-suffixesuse numeric suffixes instead of alphabetic-l, --lines=NUMBERput NUMBER lines per output file--verboseprint a diagnos
这篇关于shell命令之split的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!