info coreutils
keybindings on the terminal
tail -f displays lines from the end of files and continues to display live future updates - so you can wait and see updates in real-time
tail -f /var/log/mylogfile
-n specifies the number of last lines to show at first
tail -n 400 -f /var/log/mylogfile
it can be filtered
tail -f |grep myfilterstring
live updates of multiple files:
tail -f /var/log/mylogfile /var/log/another-file /var/log/and-another-file
see here
0 */12 * * * /usr/bin/redmine-update-repositories
su root # dcron is one of the simpler implementations pacman -S dcron systemctl enable crond # remove the included preset jobs and directories - /etc/cron.daily and the like crontab -d && rmdir /etc/cron* mkdir /etc/cron.d # create rules in cron job files nano /etc/cron.d/myscript systemctl start crond
crond sends the standard output from jobs per mail. you may not want this, so edit "/etc/conf.d/crond" and add "-m off" to the arguments. "systemctl status crond" shows log and error information