13 lines
90 B
Bash
Executable File
13 lines
90 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
crond -f &
|
|
crond_pid=$!
|
|
|
|
while `true`
|
|
do
|
|
sleep 3600
|
|
done
|
|
|
|
# kill $crond_pid
|