2015-12-28 21:01:39 +00:00
|
|
|
# tac
|
|
|
|
|
2020-02-08 14:48:47 +00:00
|
|
|
> Print and concatenate files in reverse (last line first).
|
2021-04-01 16:54:26 +01:00
|
|
|
> More information: <https://www.gnu.org/software/coreutils/tac>.
|
2015-12-28 21:01:39 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Print the contents of *file1* reversed to the standard output:
|
2015-12-28 21:01:39 +00:00
|
|
|
|
|
|
|
`tac {{file1}}`
|
|
|
|
|
2020-02-08 14:48:47 +00:00
|
|
|
- Print the contents of the standard input reversed to the standard output:
|
|
|
|
|
|
|
|
`{{command}} | tac`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Concatenate several files reversed into the target file:
|
2015-12-28 21:01:39 +00:00
|
|
|
|
2016-07-22 21:24:06 +01:00
|
|
|
`tac {{file1}} {{file2}} > {{target_file}}`
|