I have a file with multiple information in different columns to the same ID
first | x | y | z
second | x | y
third | x
I want something like this:
first | x
first | y
first | z
second | x
second | y
third | x
I have a file with multiple information in different columns to the same ID
first | x | y | z
second | x | y
third | x
I want something like this:
first | x
first | y
first | z
second | x
second | y
third | x
awk
command, Linux's built-in column-parser. – strakcy Jul 05 '16 at 19:43