在linux系統中對檔案進行分割
經常對從資料庫中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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux下如何對目錄中的檔案進行統計Linux
- 『學了就忘』Linux檔案系統管理 — 61、使用parted命令進行分割槽Linux
- 在Linux中呼叫MapReduce對檔案中各個單詞出現次數進行統計Linux
- Linux 磁碟分割槽及檔案系統管理Linux
- 在Linux中,如何進行系統故障排查?Linux
- 在Linux中,如何進行系統安全加固?Linux
- 使用scp命令在多個Linux系統間進行檔案複製Linux
- LVM中對基於xfs的檔案系統進行擴容LVM
- 『學了就忘』Linux檔案系統管理 — 67、通過命令模式進行LVM分割槽Linux模式LVM
- 『學了就忘』Linux檔案系統管理 — 59、使用fdisk命令進行手工分割槽Linux
- 在Linux中,如何在Linux中進行系統映象管理?Linux
- 在Linux中,檔案系統概念是什麼?Linux
- 在Linux中,有哪些系統日誌檔案?Linux
- Linux系統如何進行分割槽?swap分割槽是什麼?Linux
- 分散式檔案系統(HDFS)與 linux系統檔案系統 對比分散式Linux
- 在Linux中,如何進行系統效能調優?Linux
- 在Linux中,如何進行系統效能監控?Linux
- 在Linux中,如何進行系統故障恢復?Linux
- 用GParted給linux系統進行磁碟分割槽?Linux
- 在Linux中,如何進行備份或歸檔檔案(tar 命令)?Linux
- 如何在 Linux 分割槽或邏輯卷中建立檔案系統Linux
- 『學了就忘』Linux檔案系統管理 — 66、通過圖形介面進行LVM分割槽LinuxLVM
- 在Linux中,如何建立檔案系統的備份?Linux
- 在Linux系統中如何刪除一個檔案?Linux
- 在Linux中,如何進行系統更新和升級?Linux
- 在Linux中,如何進行系統效能瓶頸分析?Linux
- 如何在Linux 中獲取硬碟分割槽或檔案系統的UUID?Linux硬碟UI
- Linux Centos系統 磁碟分割槽和檔案系統管理 (深入理解)LinuxCentOS
- 在Linux中,如何進行系統效能的峰值測試?Linux
- 在Linux中,如何進行系統資源的監控?Linux
- 在Linux中,如何進行系統更新和補丁管理?Linux
- 在Linux中,如何進行系統資源的隔離?Linux
- 如何在Linux中進行檔案切割操作?Linux
- 在Linux中,如何建立、檢查和修復檔案系統?Linux
- 在Linux中,如何實現檔案系統的快照和克隆?Linux
- Linux系統對分割槽有哪些要求?Linux
- Linux檔案系統Linux
- [Linux]檔案系統Linux