Home / applications / aplcache / pull.sh
#!/bin/bash for directory in *; do if [[ -d $directory ]]; then echo $directory cd $directory git pull cd .. fi done wait