需求

linux shell 中的 tail 有啥作用?

解决

tail 是用来读最后的数据的,一般用来读取实时增长的 log,把最新的 log 给显示出来。

tail -f /etc/log.log

参考