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.
我有一个 .txt 文件,它有 98 行。我需要缩短每一行,以便每行只有前 14 个字符。我该怎么做呢?
如果是 Linux:
cut -c -14 myfile.txt > mycutfile.txt
这样做是获取原始文件每行的前 14 个字符(-14是 的快捷方式)并将它们通过管道输出到新文件。1-14
-14
1-14
colrm 15 < foo.txt
看起来不错,可能会做你想做的事。
如果要保存结果,您需要将输出定向到另一个文件。