aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/cli/tac.md
blob: 56ab92c4b7c5f53ef31e5ec59de196317fa009e1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11





                                                                   




                              
   
# 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
```