vote up 1 vote down star

I'm writing a small shell script that needs to reverse the lines of a text file. Is there a standard filter command to do this sort of thing?

My specific application is that I'm getting a list of Git commit identifiers, and I want to process them in reverse order:

git log --pretty=oneline work...master | grep -v DEBUG: | cut -d' ' -f1 | reverse

The best I've come up with is to implement reverse like this:

... | cat -b | sort -rn | cut -f2-

This uses cat to number every line, then sort to sort them in descending numeric order (which ends up reversing the whole file), then cut to remove the unneeded line number.

The above works for my application, but may fail in the general case because cat -b only numbers nonblank lines.

Is there a better, more general way to do this?

flag

4 Answers

vote up 6 vote down check

In GNU coreutils, there's tac(1)

link|flag
Damn whatever is the guilty party, the answer notifier doesn't always work for me :/ – Vinko Vrsalovic Jan 6 '09 at 21:45
vote up 5 vote down

Answer is not 42 but tac.

Edit: Slower but more memory consuming using sed

sed 'x;1!H;$!d;x'
link|flag
Cryptic, but that's what I was looking for. Thanks! – Greg Hewgill Jan 6 '09 at 21:43
'tac' isn't cryptic: it's 'cat' in reverse. ;-) – Charlie Martin Jan 6 '09 at 23:14
That's true, but I sure wouldn't have guessed that without knowing beforehand. You could call the sort program "abc" which makes sense in the same way but wouldn't help somebody guess its name! – Greg Hewgill Jan 7 '09 at 1:23
vote up 0 vote down
:   "@(#)$Id: reverse.sh,v 1.2 1997/06/02 21:45:00 johnl Exp $"
#
#   Reverse the order of the lines in each file

awk ' { printf("%d:%s\n", NR, $0);}' $* |
sort -t: +0nr -1 |
sed 's/^[0-9][0-9]*://'

Works like a charm for me...

link|flag
O(N.log(N)) vs O(N) tac and sed = Less effective approach you can't think up? I think that there can be O(N!), try found it. – Hynek -Pichi- Vychodil Jan 7 '09 at 8:40
I use it a couple of times a month, typically on a up to a few hundred lines of code. It's fine for that. If I needed it every day, on gigabyte files, then I'd reconsider. I wrote it in 1989; I altered the ID string notation in 1997. It's stable code. And 'tac' is not standard on Solaris. – Jonathan Leffler Jan 7 '09 at 15:54
But there is sed on Solaris I guess, thus you can use more effective sed 'x;1!H;$!d;x' – Hynek -Pichi- Vychodil Jan 19 '09 at 10:52
Probably - I don't use it to process such large files that it matters that sort spills the data to disk if needed but the sed version crashes if there's no memory space left for it to grab. If it was a performance problem, I'd consider moving; it isn't (for me) so I'm probably too lazy to change. – Jonathan Leffler Jan 19 '09 at 23:23
It's true. sed is not cache data to disk as sort does. I don't know if tac is not affected with same bug ;-) – Hynek -Pichi- Vychodil Jan 20 '09 at 20:14
vote up 0 vote down
cat -b only numbers nonblank lines"


If that's the only issue you want to avoid, then why not use "cat -n" to number all the lines?

link|flag
Good point, I guess I didn't read far enough through the man page to find -n. In any case, tac is what I really wanted. – Greg Hewgill Jan 20 '09 at 21:01

Your Answer

Get an OpenID
or

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