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.
我正在尝试将一个非常大的 CSV 文件拆分为更小的更易于管理的文件。我已经尝试过split,但它似乎最高为676 个文件。
split
我拥有的 CSV 文件超过 80mb,我想将其拆分为 50 行文件。
请注意,更好的意思是使用编号结构而不是split' az 排序。
split是正确的工具,问题是后缀只有 2 long 26^2 = 676,如果你让它更长,你应该没问题:
26^2 = 676
split -a LEN file
使用“cat”对每一行进行编号,并将输出通过管道传递到“grep”,并使用参数仅打印 n 行