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.
以下を含むテキスト ファイルfile.txt(12 MB) を取得しました。
file.txt
something1 something2 something3 something4 (...)
、、などfile.txtの 12 個の *.txt ファイルに分割する方法はありますか?file2.txtfile3.txtfile4.txt
file2.txt
file3.txt
file4.txt
$ split -l 100 input_file output_file
ここ-lで、各ファイルの行数です。これにより、次が作成されます。
-l