This website requires JavaScript.
Explore
Help
Sign In
ctome
/
tldr
mirror of
https://github.com/CrimsonTome/tldr.git
Watch
1
Star
0
Fork
You've already forked tldr
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
91c6744c1e
tldr
/
pages
/
common
/
tac.md
237 B
Raw
Blame
History
tac
Print and concatenate files in reverse.
Print the contents of
file1
reversed to the standard output:
tac {{file1}}
Concatenate several files reversed into the target file:
tac {{file1}} {{file2}} > {{target_file}}