12 lines
142 B
Bash
Executable File
12 lines
142 B
Bash
Executable File
#! /bin/sh
|
|
|
|
file="/crontab";
|
|
{
|
|
echo "SHELL=/bin/sh
|
|
* * * * * /cron-re-read.sh"
|
|
} >> "$file";
|
|
|
|
crontab -l | cat /crontab |crontab -
|
|
|
|
crond -f
|