9 lines
186 B
Bash
9 lines
186 B
Bash
#!/bin/bash
|
|
|
|
sudo apt install cron -y
|
|
crontab -l
|
|
|
|
EDITOR=nano crontab -e
|
|
# m h dom mon dow command
|
|
*/10 * * * * bash /home/edgeking810/backup.sh | tee -a /tmp/backup-logs.txt
|