mirror of https://github.com/bjeanes/dotfiles.git
8 lines
98 B
Bash
8 lines
98 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for i in `find . -type d -depth 1`; do
|
||
|
cd $i
|
||
|
git pull origin master &
|
||
|
cd ..
|
||
|
done
|