做用:分割文件。
用法:split [OPTION]... [INPUT [PREFIX]]
主要選項以下:css
[root@localhost mnt]# split -d -b100K messages.old msg_
[root@localhost mnt]# ls -l
total 880
-rw-------. 1 root root 448306 Jan 27 14:08 messages.old
-rw-r--r--. 1 root root 102400 Jan 27 14:09 msg_00
-rw-r--r--. 1 root root 102400 Jan 27 14:09 msg_01
-rw-r--r--. 1 root root 102400 Jan 27 14:09 msg_02
-rw-r--r--. 1 root root 102400 Jan 27 14:09 msg_03
-rw-r--r--. 1 root root 38706 Jan 27 14:09 msg_04
[root@localhost mnt]# wc -l messages.old
4101 messages.old
[root@localhost mnt]# split -l2000 messages.old msg_
[root@localhost mnt]# ls
messages.old msg_aa msg_ab msg_ac
[root@localhost mnt]# wc -l msg_a*
2000 msg_aa
2000 msg_ab
101 msg_ac
4101 total