auto_updater.sh 61 B

1234567
  1. #!/bin/sh
  2. while true; do
  3. git stash
  4. git pull
  5. sleep 60
  6. done