Currently, I have a plain text file, A, such as
lowest priority
very high significance.
outstanding
very novel
In this file, every line contains a sentence. I want to separate this file into multiple files, and each file is composed of a single line of the original file, A. For instance, with respect to the example file A, I want to generate four files:
- A1, which has single line,
lowest priority - A2, which has single line,
very high significance - A3, which has single line,
outstanding - A4, which has single line,
very novel.
How to do that under linux?