Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
December 20, 2021 07:41 pm GMT

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

Prints last 5 lines of ~/.bashrc

Print from N-th line afterwards -n +N

tail -n +3 ~/.bashrc

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

Following syslog events -f

tail -f /var/log/syslog

Follows system logs (on Debian/Ubuntu).


Original Link: https://dev.to/babakks/living-in-the-shell-20-tail-displayfollow-file-content-3nm1

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To