10 lines
127 B
Bash
10 lines
127 B
Bash
#!/bin/sh
|
|
if pushd ~/Git; then
|
|
for repo in *; do
|
|
pushd "$repo"
|
|
git pull
|
|
popd
|
|
done
|
|
popd
|
|
fi
|
|
|