在 Linux 上要來追蹤一個檔案的內容,就用 tail,有新的內容會顯示在畫面上
不過缺點就是版本會太亂,假如我一下子 tail 兩個檔案以上,有新的內容就會讓畫面無法很清楚的區別誰是誰的
multitail 可以在當我
multitail /file1 /file2
完全固定一個框框給一個檔案,這樣子版本就不會太亂了
也可以讓我,同時用指令作另一件事情
multitail /var/log/messages -l 'ping 168.95.1.1'
感覺超好用
tarball : http://www.vanheusden.com/multitail/download.php
rpm : rpmforge 就有
2018/12/11 updated
ref : https://www.tecmint.com/view-multiple-files-in-linux/
變成兩個欄位呈現
multitail -s 2 file1 file2
兩個欄位,一邊一個一邊三個
multitail -s 2 -sn 1,3 file1 file2 file3 file4
顯色不同
multitail -ci green file1 -ci yellow file2
留言