Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 327 Bytes

tail.md

File metadata and controls

14 lines (10 loc) · 327 Bytes

TAIL

Gets the ending content of a file and prints it out to the screen.

# Get the ending lines of error.log
tail error.log

There's also a possibility to read a stream of data in realtime, for instance, to read the apache error logs in real time while the server is executing.

tail -f apache/error.log