2021-05-12 14:32:11
linux split命令使用簡介
2019-12-17 08:41:21
linux split命令簡介
1
進入到/tmp,生成實驗資料split.out,man gcc>split.out,如下圖
2
以每1000行分割檔案,預設字首x,依次[字首]aa,[字首]ab,[字首]ac,如下圖,完成分割
3
以每200K大小分割,尺寸可自定義,split -b 200k split.out,如下圖
4
自定義字首分割檔案,split -b 200k split.out split,如下圖
5
以行數分割檔案,每2000行分割,split -l 2000 split.out split,如下圖
6
使用-d選項可以指定字尾為數位,如[字首]00,[字首]01,[字首]02...,而不是[字首]aa,[字首]ab,[字首]ac,如下圖
7
列出部分選項具體含義
1
使用cat合併分割的檔案,合併後的檔案和原檔案相同
相關文章