tail --follow=name /var/log/syslog
anstatt tail -f <...>
Wie meinen ?
__( manpage 'tail' )__________________________________________________
/
| TAIL(1) FSF TAIL(1)
| -f, --follow[={name|descriptor}]
| output appended data as the file grows; -f, --fol
| low, and --follow=descriptor are equivalent
\______________________________________________________________________
"-f" und "--follow=" sind equivalent.
Du kannst tail -f /dev/fd/1
genauso wie tail --follow=/dev/fd/1
oder tail -f <file>
und tail --follow=<file>
verwenden.