Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

9 Answers

up vote 69 down vote accepted

Yes:

tail -r myfile.txt

Reference

share|improve this answer
Wow, never would have guessed tail could do this... Thanks! – Scotty Allen Apr 12 '09 at 21:38
28  
Just remember that the '-r' option isn't POSIX-compliant. The sed and awk solutions below are going to work even in the wonkiest systems. – guns Apr 27 '09 at 7:59
1  
The link on this is dead now – Flexo Jan 26 '12 at 18:15
27  
use the Unix command "tac" (the reverse of cat) – DenTheMan Apr 17 '12 at 14:53
5  
Just tried this on Ubuntu 12.04, and discovered there is no -r option for my version of tail (8.13). Use 'tac' instead (see Mihai's answer below). – odigity Sep 21 '12 at 16:50
show 5 more comments

Also worth mentioning: tac (the, ahem, reverse of cat). Part of coreutils.

share|improve this answer
15  
Especially worth mentioning to those using a version of tail with no -r option! (Most Linux folks have GNU tail, which has no -r, so we have GNU tac). – oylenshpeegul Apr 12 '09 at 21:48
3  
Just a note, because people have mentioned tac before, but tac doesn't appear to be installed on OS X. Not that it'd be difficult to write a substitute in Perl, but I don't have the real one. – Chris Lutz Apr 12 '09 at 21:49
2  
You can get GNU tac for OS X from Fink. You might wish to get GNU tail as well, as it does some things that BSD tail does not. – oylenshpeegul Apr 12 '09 at 22:00
2  
This also works with cygwin. – bacar Oct 4 '10 at 18:44
not portable :( – Good Person Dec 4 '12 at 13:14

There's the well-known sed tricks:

# reverse order of lines (emulates "tac")
# bug/feature in HHsed v1.5 causes blank lines to be deleted
sed '1!G;h;$!d'               # method 1
sed -n '1!G;h;$p'             # method 2

(Explanation: prepend non-initial line to hold buffer, swap line and hold buffer, print out line at end)

If you can't remember that,

perl -e 'print reverse <>'

On a system with GNU utilities, the other answers are simpler, but not all the world is GNU/Linux...

share|improve this answer
1  
From the same source: awk '{a[i++]=$0} END {for (j=i-1; j>=0;) print a[j--] }' file* Both the sed and awk versions work on my busybox router. 'tac' and 'tail -r' do not. – guns Apr 27 '09 at 8:00
I wish this one is the accepted answer. coz sed is always available, but not tail -r and tac. – ryenus Nov 28 '12 at 2:43

If you happen to be in vim use

:g/^/m0
share|improve this answer

grep -n "" myfile.txt | sort -r -n | gawk -F : "{ print $2 }"

share|improve this answer
Clever, but hacky:) – Scotty Allen May 6 '09 at 18:41
instead of the gawk statement, I'd do something like this: sed 's/^[0-9]*://g' – Carlson Technology Nov 21 '11 at 21:49
why not use "nl" instead of grep -n ? – Good Person Dec 4 '12 at 13:14
$ (tac 2> /dev/null || tail -r)

Try tac, which works on Linux, and if that doesn't work use tail -r, which works on BSD and OSX.

share|improve this answer
+1 tac is more concise. – andyortlieb Dec 14 '12 at 17:59
Why not tac myfile.txt - what am I missing? – sage Jan 24 at 17:43
@sage, to fall back to tail -r in case tac is not available. tac is not POSIX compliant. Neither is tail -r. Still not foolproof, but this improves the odds of things working. – slowpoison Apr 9 at 20:55
I see - for instances when you are not able to manually/interactively change the command when it fails. Good enough for me. – sage Apr 10 at 17:50

You can do it using a combination of tail and head :)

file=$1
lineCount=`cat $file | wc -l`
counter=0
while [ $counter -le $lineCount ]
do
    tail -$counter $file | head -1
    counter=`expr $counter + 1`
done
share|improve this answer
4  
N^2 reads of the file, nice! – jgubby Feb 14 '12 at 14:48

I really like the "tail -r" answer, but my favorite gawk answer is....

gawk '{ L[n++] = $0 } 
  END { while(n--) 
        print L[n] }' file
share|improve this answer
is this GNU awk specific ? – Good Person Dec 4 '12 at 13:15

EDIT the following generates a randomly sorted list of numbers from 1 to 10:

seq 1 10 | sort -R | tee /tmp/lst |cat <(cat /tmp/lst) <(echo '-------') **...**

where dots are replaced with actual command which reverses the list

tac

seq 1 10 | sort -R | tee /tmp/lst |cat <(cat /tmp/lst) <(echo '-------') \
<(tac)

python: using [::-1] on sys.stdin

seq 1 10 | sort -R | tee /tmp/lst |cat <(cat /tmp/lst) <(echo '-------') \
<(python -c "import sys; print(''.join(([line for line in sys.stdin])[::-1]))")
share|improve this answer
Your sort example only works because you're reversing a sorted list. This answer is more dangerous than it is helpful. – Eric Apr 2 at 15:08
Yep, total nonsense. Fixed it ;-) – Yauhen Yakimovich Apr 2 at 17:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.