↧
Linux: Crontab notes for different users – run a cron job every time a system...
Each user has its own crontab in Linux. Root crontab is only available to root and cannot be modified by other users. To edit your non-root crontab: crontab -e To list available crontab: crontab -l To...
View ArticleLinux: edit crontab with nano instead of vi
Everyone hates vi… I sure do. If you can’t or don’t want to permanently change your crontab editor use this: env EDITOR=nano crontab -e Related posts: Linux: Crontab notes for different users – run a...
View Article