Crontab: on and off
by hackprime
These shortcuts allow to disable and enable crontab of current user.
# Off
crontab -l | sed -e s/^/#/ | crontab -
# On
crontab -l | sed -e s/^#// | crontab -
by hackprime
These shortcuts allow to disable and enable crontab of current user.
# Off
crontab -l | sed -e s/^/#/ | crontab -
# On
crontab -l | sed -e s/^#// | crontab -