I'd like to reverse the order of lines in a text file (or stdin), preserving the contents of each line.
So, i.e., starting with:
foo
bar
baz
I'd like to end up with
baz
bar
foo
Is there a standard UNIX commandline utility for this?
|
I'd like to reverse the order of lines in a text file (or stdin), preserving the contents of each line. So, i.e., 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... |
|||||||
|
|
grep -n "" myfile.txt | sort -r -n | gawk -F : "{ print $2 }" |
|||||||
|
Try |
|||||||||
|
|
You can do it using a combination of tail and head :)
|
|||||
|
|
I really like the "tail -r" answer, but my favorite gawk answer is....
|
||||
|
|
|
EDIT the following generates a randomly sorted list of numbers from 1 to 10:
where dots are replaced with actual command which reverses the list tac
python: using [::-1] on sys.stdin
|
|||||
|