当我将大文本文件分割成碎片时,我需要你的帮助,我该如何控制输出。
例如,在我运行命令的那一刻
split -l 2000 file newfile-
当前输出
newfile-aa
newfile-ab
etc
我想拥有什么,如果可能的话
newfile-000
newfile-001
newfile-002
感谢您的帮助。
答案 0 :(得分:2)
使用
split -l 2000 -a 3 -d file newfile-
-a 3将后缀设置为3个字符。
-d使用数字后缀。