在linux系統中對檔案進行分割

zhang41082發表於2019-07-10

經常對從資料庫中SPOOL出來的資料進行分割,而以往都是要在UltraEdit中一點點的剪下、複製,一直覺得linux中應該有個命令,今天終於找到了,那就是SPLIT。

[@more@]

下面是幫助資訊:

[root@logana opt]# split --help
Usage: split [OPTION] [INPUT [PREFIX]]
Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; 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=N use suffixes of length N (default 2)
-b, --bytes=SIZE put SIZE bytes per output file
-C, --line-bytes=SIZE put at most SIZE bytes of lines per output file
-l, --lines=NUMBER put NUMBER lines per output file
--verbose print a diagnostic to standard error just
before each output file is opened
--help display this help and exit
--version output version information and exit

SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.

使用起來也非常簡單,比如:

split -l 100000 xxx.lst aaaa

表示把xxx.lst分割成每10萬行一個的檔案,分割後的檔案使用aaaa作為字首

使用不同的引數,也可以按照檔案的大小進行分割。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25016/viewspace-916060/,如需轉載,請註明出處,否則將追究法律責任。

相關文章