Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我目前用来分割文件的方法:
split -l 500 myfile.txt file_
它会自动创建像 file_aa、file_ab 等文件。
有没有办法使用数字而不是字母,以便它是 file_1、file_2 等等?
人分裂 说:
split -d -n 4 -l 500 myfile.txt file_
或者
split --numeric-suffixes --digits=4 --lines=500 myfile.txt file_