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
1854d10f4f
tldr
/
common
/
tail.md
218 B
Raw
Blame
History
tail
Display the last part of a file
show last 'num' lines in file
tail -n {{num}} {{file}}
show last 'num' bytes in file
tail -c {{num}} {{file}}
keep reading file until ctrl-c
tail -f {{file}}