7 lines
155 B
Bash
Executable File
7 lines
155 B
Bash
Executable File
#!/bin/sh
|
|
|
|
sed -i '/coremark/d' /etc/crontabs/root
|
|
echo "0 4 * * 0 /etc/coremark.sh" >> /etc/crontabs/root
|
|
crontab /etc/crontabs/root
|
|
|
|
touch /etc/bench.log |