LinuxText Processingtail -f
tail

tail -fText Processing

tr

Follow file and output appended data in real time.

Syntax

tail -f FILE

Example

Enter values below to update the example in real time.

tail
var
nginx
access
app
# 로그 실시간 모니터링
tail -f /var/log/nginx/access.log

# 마지막 50줄 + 실시간
tail -n 50 -f app.log