mirror of https://github.com/CrimsonTome/tldr.git
419 B
419 B
tac
Print and concatenate files in reverse (last line first). More information: https://www.gnu.org/software/coreutils/tac.
- Print the contents of file1 reversed to the standard output:
tac {{file1}}
- Print the contents of the standard input reversed to the standard output:
{{command}} | tac
- Concatenate several files reversed into the target file:
tac {{file1}} {{file2}} > {{target_file}}