shithub: rc

ref: e43cf78fa17316d657f580c370c4fc170337c8f9
dir: /bin/tac/

View raw version
#!/bin/awk -f
{
	l[NR] = $0
}
END{
	while(NR > 0)
		print l[NR--]
}