f5178ed
d0fa8ff
1 2 3 4 5 6
7 8 9 10 11
12
# tac(1) ```sh # Reverse output lines of file(s) and concatenate (reverse of cat). tac FILE [FILE] echo -e 'a1\nb2\nc3\nd4' | tac # d4 # c3 # b2 # a1 ```