aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/cli/tac.md
blob: eba42bab86a123c2040949a5ac35b76944973a11 (plain) (tree)
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
```