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: How To Repair Corrupted Zip File

kimconnect@linuxbox:/media/data/newPhotos $ zip -FF corrupted.zip --out fixed.zip Fix archive (-FF) - salvage what can zip…

How To Install Kubernetes on Ubuntu 20.04 Server

Overview Docker is available in 2 versions, Community Edition (CE) and Enterprise Edition (DE). The…

Redhat 7.5 Installation

Standard Default Installation Instructions At the initial loading screen, press the UP arrow to select…