3 lines
77 B
Bash
3 lines
77 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
for f in /var/www/owncloud/apps/*/; do (cd "$f"; git pull); done
|