Posted On January 12, 2021

Linux: How to Add a Line into Crontab from Command Line

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Linux: How to Add a Line into Crontab from Command Line

The easy method:

newline=@reboot /usr/bin/numlockx
(crontab -l && echo "$newLine") | crontab -

Alternative (longer version) of adding a line to crontab:

crontab -l > tempCron # copy crontab to a new file
echo "$newLine" >> tempCron #echo new cron into cron file
crontab tempCron # Replace crontab with tempCron
rm tempCron

Original (manual) version of installing numlock:

sudo crontab -e
### add this line ###
echo "@reboot /usr/bin/numlockx" >> /usr/bin/crontab

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Linux: Bash Shell Script To Move/Archive Old Files

# create a script to move files (notice the regex escape for special chars) sudo…

SENDMAIL Configurations

SMTP relay will also check the source of sender by using ping-back. Thus, the servername…

Problem: NextCloud Would Not Start Due to Versioning Variance

This issue has occurred when NextCloud has been upgraded after deployment. Its source docker container…