簡單明了死陆,直接上命令
- 基礎(chǔ)版
split -l 1000 test.txt -d -a 3 test_
-l:按行分隔,每1000行切割test.txt文件
-d:添加數(shù)字后綴
-a:以3位數(shù)數(shù)字做尾數(shù)
test_:分割后的文件的前綴
- 升級版
split -l 1000 test.txt -d -a 3 test_split_&&ls|grep test_split_ | xargs -n1 -i {} mv {} {}.txt
在基礎(chǔ)版的結(jié)果上唧瘾,先執(zhí)行l(wèi)s命令措译,查找test_split_開頭的文件,然后逐個重命名為.txt