0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

最新ログを逐次表示するコマンド

Last updated at Posted at 2019-04-24

概要

処理が終了するたびにログファイルを生成するサービスを監視していました。通常はtailコマンドでログファイルをリアルタイム表示しますが、処理が終了するたびにログファイルが生成されるため上手く行きません。そこで、リアルタイムでばなく逐次表示させることで解決しました。

目的

watchコマンドで最新ログファイルを逐次表示するコマンドを組み立てます。

作業

$ watch -n <secs> tail -n <lines> '$(ls -r | head -n 1)'

最後

以外とシンプルなコマンド群で実現可能です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?