mirror of
https://github.com/benbusby/farside.git
synced 2025-03-15 11:46:32 -04:00
7 lines
200 B
Bash
7 lines
200 B
Bash
![]() |
#!/bin/sh
|
||
|
# Install crontab to run update script
|
||
|
|
||
|
SCRIPT_DIR="$(builtin cd "$(dirname "${BASH_SOURCE[0]}")" && pwd -P)"
|
||
|
|
||
|
(crontab -l 2>/dev/null; echo "*/5 * * * * $SCRIPT_DIR/update.sh") | crontab -
|