3 lines
87 B
Plaintext
3 lines
87 B
Plaintext
|
#!/bin/bash
|
||
|
for i in /usr/repos/*/.git; do ( echo $i; cd $i/..; sudo git pull; ); done
|