DEV Community

Cover image for Living in the Shell #20; tail (Display/Follow File Content)
Babak K. Shandiz
Babak K. Shandiz

Posted on • Originally published at babakks.github.io on

1

Living in the Shell #20; tail (Display/Follow File Content)

tail

Display or follow file content.

ℹ️ Here, following means streaming a file while it's being updated (appended).

ℹ️ You can use -c in place of -n in the following examples, to switch to binary offset selection.

Print bottom N lines of a file -n

tail -n 5 ~/.bashrc
Enter fullscreen mode Exit fullscreen mode

Prints last 5 lines of ~/.bashrc

Print from N-th line afterwards -n +N

tail -n +3 ~/.bashrc
Enter fullscreen mode Exit fullscreen mode

Prints ~/.bashrc from the 3rd line until the end.

Following syslog events -f

tail -f /var/log/syslog
Enter fullscreen mode Exit fullscreen mode

Follows system logs (on Debian/Ubuntu).

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay