1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 14:06:01 +02:00
tldr/pages/common/tac.md

16 lines
353 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).
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}}`