Let's say we do:
tail -f /var/log/apache2/error.log
Then we see what we want to see, and then, we want to quit, so that we can navigate to other directories and so on... So, the question is:
How can we quit tail ?
I've tried to type: 'q', and 'exit', and 'quit', and 'kill', no luck.
start daemon; tail -F logfile; stop daemon
(in bash or fish), pressing Ctrl+C aborts mission early (without runningstop daemon
as intended). – user2394284 Jul 20 '17 at 13:08