如何在控制台中查看production.log中的最后X小时

时间:2014-02-18 07:10:41

标签: ruby-on-rails unix

我的网络连接非常糟糕,需要在控制台中检查仅限今天部分的production.log文件。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

如评论中所述,

can you pull up the last x lines?

你可以使用它,

tail -n 50 production.log

production.log文件中获取最后50行。

<强>(OR)

如果你愿意,

tail -f production.log

将监视附加数据的production.log文件。