I'd like to reverse the lines in a text file (or stdin), preserving the contents of each line.
So, ie, starting with:
foo
bar
baz
I'd like to end up with
baz
bar
foo
Is there a standard unix commandline utility for this?
|
1
|
I'd like to reverse the lines in a text file (or stdin), preserving the contents of each line. So, ie, starting with:
I'd like to end up with
Is there a standard unix commandline utility for this?
|
||
|
|
|
|
|
||||
|
|
|
Also worth mentioning: |
||||||
|
|
|
There's the well-known sed tricks:
(Explanation: prepend non-initial line to hold buffer, swap line and hold buffer, print out line at end) If you can't remember that,
On a system with GNU utilities, the other answers are simpler, but not all the world is GNU/Linux... |
||||
|
|
|
You can do it using a combination of tail and head :)
|
||
|
|
|
|
grep -n "" myfile.txt | sort -r -n | gawk -F : "{ print $2 }" |
||
|