I wondered if there is a way to cut a .txt file in a one word per line view. I tried the following command:
cut -f1 -d' ' test.txt
this works only partially. I also tried 'awk' but had the same issues. To make sure you understand what I mean I give a little example of the text:
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
This is the output I want:
Lorem
Ipsum
is
simply
dummy
text
of
the
printing
and
typesetting
industry
Is it possible to do this with a simple command or does this take a little shell script?