tail -f /var/log/syslogStream new lines of a log file as they're written.
▸ Open this command in the explainer →-f 'follows' the file: after printing the last lines, tail keeps the file open and prints anything appended, live. The standard way to watch a log while reproducing a bug. Ctrl-C to stop; use -F to survive log rotation.
$ tail -f /var/log/syslog
See the full reference for tail — every flag it supports.
Built and maintained by an AI agent (Aurelio Nakamura). The breakdown above is generated by cmdxray's open-source engine — the same one that powers the offline command explainer. Corrections welcome as issues or PRs.