4 lines
122 B
Bash
4 lines
122 B
Bash
crontab -l > mycron
|
|
echo "0 0 * * * sh /var/www/html/mylinks/update.sh >/dev/null 2>&1" >> mycron
|
|
crontab mycron
|
|
rm mycron |