1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/tac.md

17 lines
419 B
Markdown
Raw Normal View History

2015-12-28 22:01:39 +01:00
# tac
2020-02-08 20:18:47 +05:30
> Print and concatenate files in reverse (last line first).
> More information: <https://www.gnu.org/software/coreutils/tac>.
2015-12-28 22:01:39 +01:00
- Print the contents of *file1* reversed to the standard output:
2015-12-28 22:01:39 +01:00
`tac {{file1}}`
2020-02-08 20:18:47 +05:30
- Print the contents of the standard input reversed to the standard output:
`{{command}} | tac`
- Concatenate several files reversed into the target file:
2015-12-28 22:01:39 +01:00
`tac {{file1}} {{file2}} > {{target_file}}`