I have simple text file named "example".
Reading with terminal command: cat example
Output:
abc cdef ghi jk lmnopq rst uv wxyzI want to convert (transform) into following form: (expected output from cat example)
abc
cdef
ghi
jk
lmnopq
rst
uv
wxyzHow can I do this via the command-line?
(This is only an example file, I want to convert word's position in vertical-column)
16 Answers
A few choices:
The classic, use
tr:tr ' ' '\n' < exampleUse
cutcut -d ' ' --output-delimiter=$'\n' -f 1- exampleUse
sedsed 's/ /\n/g' exampleUse
perlperl -pe 's/ /\n/g' exampleUse the shell
foo=$(cat example); echo -e ${foo// /\\n}
Try the below command
awk -v RS=" " '{print}' fileOR
awk -v RS='[\n ]' '{print}' fileExample:
$ awk -v RS=" " '{print}' example
abc
cdef
ghi
jk
lmnopq
rst
uv
wxyzExplanation:
RS (Record separator) is an built-in awk variable. In the first command, the value given to the Record separator variable is space. Awk breaks the line from printing whenever it finds a space.
In the second command, the value given to the RS variable is space or a new line character.This command eliminates the extra blank line appeared while running the first command.
0You can use xargs,
cat example | xargs -n 1or, better
xargs -n 1 < example 1 Using a perl oneliner:
perl -p -i -e 's/\s/\n/g' exampleIt will replace spaces and tabs with "ENTER" (aka \n)
No one posted python, so here's that:
python -c "import sys;lines=['\n'.join(l.strip().split()) for l in sys.stdin.readlines()];print('\n'.join(lines))" < input.txt We redirect input file into python's stdin stream, and read it line by line. Each line is stripped of its trailing newline, split into words, and then rejoined into one string where each word is separated by newline.This is done to ensure having one word per line and avoid multiple newlines being inserted in case there's multiple spaces next to each other. Eventually we end up with list of strings, which is then again joined into larger string, and printed out to stdout stream. That later can be redirected to another file with > out.txt redirection.
Similar to the 'tr' above but with the additions:
Also works for tabs
Converts multiple spaces or tabs to 1 newline
tr -s '[:space:]' '\n' < example