Gibt es eine Möglichkeit, den Dateinamen am Anfang jeder Zeile anzuzeigen, wenn Sie wie unten gezeigt mehrere Dateien gleichzeitig verfolgen?
tail -f one.log two.log
aktueller Output
==> one.log <==
contents of one.log here...
contents of one.log here...
==> two.log <==
contents of one.log here...
contents of two.log here..
Suchen Sie nach etwas wie
one.log: contents of one.log here...
one.log: contents of one.log here...
two.log: contents of two.log here...
two.log: contents of two.log here...
-v
(ausführliche) Option für tail ansehen . Dies entspricht möglicherweise nicht genau Ihrer Frage, ist aber ein Anfang.