f5178ed
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 'aa\nbb\ncc\ndd' | tac # dd # cc # bb # aa ```