7 lines
96 B
Bash
7 lines
96 B
Bash
#!/bin/bash
|
|
cd /pfad/zu/deinem/repo
|
|
while true; do
|
|
git pull
|
|
sleep 10
|
|
done
|