tail -f
tail -f
最後の方の行を表示するtailコマンド。
tailコマンドの-fオプション、
これを使えばリアルタイムで最新のログを見ることができます。
実用例
apacheのアクセスログ確認
tail -f /var/log/httpd/ssl_access_log | grep seeurl
tail -f でリアルタイムのログを取得して、
且つgrepで任意の文字が含まれるものだけ拾って表示。
RoRプロジェクトのログ確認
tail -f /var/www/projects/project_name/current/log/test.log
tail -f /var/www/projects/project_name/current/log/production.log
RoRのlogファイルがある場所を指定すると当たり前ですが、
プロジェクトのエラーログをリアルタイムで表示できます。
割とよく使う。