I have some data on a single line like below
abc edf xyz rfg yeg udh
I want to present the data as below
abc
xyz
yeg
edf
rfg
udh
so that alternate fields are printed with newline separated. Are there any one liners for this?
|
feedback
|
|
The following
| |||||||||
feedback
|
|
Python in the same spirit as the above awk (4 lines):
Python 1-liner (omitting the pipe to it which is identical):
| |||
feedback
|
|
Another Perl 5 version:
| |||||
feedback
|
|
Just for comparison, here's a few Perl scripts to do it (TMTOWTDI, after all). A rather functional style:
We could also do it closer to the AWK script:
I've run out of ways to do it, so if any other clever Perlers come up with another method, feel free to add it. | ||||
|
feedback
|
|
A shame that the previous perl answers are so long. Here are two perl one-liners:
On older versions of perl (without "say"), you may use this:
| |||
|
feedback
|
|
Another Perl solution:
You could even condense it into a real one-liner:
| |||
|
feedback
|
|
My attempt in haskell:
| |||
|
feedback
|
|
Here's the too-literal, non-scalable, ultra-short
Slightly longer (two more characters), using nested loops (prints an extra newline at the end):
Doesn't print an extra newline:
For comparison, paxdiablo's version with all unnecessary characters removed (1, 9 or 11 more characters):
Here's an all-Bash version:
| |||
|
feedback
|
|
Ruby versions for comparison:
| |||
|
feedback
|
For newlines, i leave it to you to do yourself. | |||
|
feedback
|
|
Here is yet another way, using Bash, to manually rearrange words in a line - with previous conversion to an array:
Cheers! | |||||
feedback
|
|
you could also just use tr:
| |||||
feedback
|