Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

tail multiple log files

$ (while [ 1 ]; do (echo -n "one "; date; sleep 1); done) > one.txt &
$ (while [ 1 ]; do (echo -n "two "; date; sleep 1); done) > two.txt &

$ tail -f one.txt -f two.txt
$ multitail one.txt two.txt