在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分割槽和檔案系統 ⑥Linux
- 在Linux中呼叫MapReduce對檔案中各個單詞出現次數進行統計Linux
- linux系統檢視分割槽檔案系統Linux
- 『學了就忘』Linux檔案系統管理 — 61、使用parted命令進行分割槽Linux
- Linux系統中增加Swap分割槽檔案步驟方法Linux
- LVM中對基於xfs的檔案系統進行擴容LVM
- 使用scp命令在多個Linux系統間進行檔案複製Linux
- Linux 磁碟分割槽及檔案系統管理Linux
- 在Linux中,如何在Linux中進行系統映象管理?Linux
- 在ORACLE中對線上重做日誌檔案進行調整Oracle
- 在Linux中,檔案系統概念是什麼?Linux
- 在Linux中,有哪些系統日誌檔案?Linux
- 『學了就忘』Linux檔案系統管理 — 59、使用fdisk命令進行手工分割槽Linux
- 分散式檔案系統(HDFS)與 linux系統檔案系統 對比分散式Linux
- 用GParted給linux系統進行磁碟分割槽?Linux
- 如何在 Linux 分割槽或邏輯卷中建立檔案系統Linux
- 『學了就忘』Linux檔案系統管理 — 67、通過命令模式進行LVM分割槽Linux模式LVM
- Linux系統下使用split命令分割大檔案.Linux
- 在Linux系統中如何刪除一個檔案?Linux
- 在Linux中,如何建立檔案系統的備份?Linux
- 『學了就忘』Linux檔案系統管理 — 66、通過圖形介面進行LVM分割槽LinuxLVM
- 【Linux】Linux檔案系統管理4 swap交換分割槽管理Linux
- 在Linux環境下使用OpenSSL對訊息和檔案進行加密Linux加密
- C++中對檔案進行讀寫操作C++
- Linux Centos系統 磁碟分割槽和檔案系統管理 (深入理解)LinuxCentOS
- 在 Linux 中分割和重組檔案Linux
- PDF檔案進行線上分割如何去操作
- 在Linux中,如何使用指令碼進行系統配置和部署?Linux指令碼
- 如何在Linux中進行檔案切割操作?Linux
- 如何在Linux 中獲取硬碟分割槽或檔案系統的UUID?Linux硬碟UI
- 呼叫MapReduce對檔案中單詞出現次數進行統計
- 在Linux中,如何建立、檢查和修復檔案系統?Linux
- 在Linux中,如何實現檔案系統的快照和克隆?Linux
- 在Linux系統環境下使用GFS檔案系統Linux
- Linux下常見檔案系統對比Linux
- 使用WinSCP軟體在windows和Linux中進行檔案傳輸WindowsLinux
- 在nodeJS中操作檔案系統(二)NodeJS