split :分割文档
用法:split [选项]... [输入 [前缀]]
-b :指定分割输出文件大小(byte)
-d :使用数字做后缀
-a :配合-d,指定后缀长度
-l :指定输出文件的列数大小
[root@host test]# dd if=/dev/zero of=file bs=100k count=10
记录了10+0 的读入
记录了10+0 的写出
1024000字节(1.0 MB)已复制,0.00128405 秒,797 MB/秒
[root@host test]# ll file
-rw-r--r--. 1 root root 1024000 5月 9 17:51 file
• split -b :指定分割输出文件的大小
[root@host test]# split -b 100k file
[root@host test]# ls -l
总用量 3000
-rw-r--r--. 1 root root 1024000 5月 9 17:51 file
-rw-r--r--. 1 root root 102400 5月 9 17:57 xaa
-rw-r--r--. 1 root root 102400 5月 9 17:57 xab
-rw-r--r--. 1 root root 102400 5月 9 17:57 xac
-rw-r--r--. 1 root root 102400 5月 9 17:57 xad
-rw-r--r--. 1 root root 102400 5月 9 17:57 xae
-rw-r--r--. 1 root root 102400 5月 9 17:57 xaf
-rw-r--r--. 1 root root 102400 5月 9 17:57 xag
-rw-r--r--. 1 root root 102400 5月 9 17:57 xah
-rw-r--r--. 1 root root 102400 5月 9 17:57 xai
-rw-r--r--. 1 root root 102400 5月 9 17:57 xaj
• split -d :指定数字后缀,-a指定数字长度
[root@host test]# split -b 100k -d -a 2 file
[root@host test]# ll
总用量 3000
-rw-r--r--. 1 root root 1024000 5月 9 17:59 file
-rw-r--r--. 1 root root 102400 5月 9 17:59 x00
-rw-r--r--. 1 root root 102400 5月 9 17:59 x01
-rw-r--r--. 1 root root 102400 5月 9 17:59 x02
-rw-r--r--. 1 root root 102400 5月 9 17:59 x03
-rw-r--r--. 1 root root 102400 5月 9 17:59 x04
-rw-r--r--. 1 root root 102400 5月 9 17:59 x05
-rw-r--r--. 1 root root 102400 5月 9 17:59 x06
-rw-r--r--. 1 root root 102400 5月 9 17:59 x07
-rw-r--r--. 1 root root 102400 5月 9 17:59 x08
-rw-r--r--. 1 root root 102400 5月 9 17:59 x09
------------------------------------------------------------------------------------------------------- 返回目录