mirror of
https://github.com/notwa/rc
synced 2024-11-05 03:39:02 -08:00
9 lines
142 B
Text
9 lines
142 B
Text
|
#!/bin/zsh
|
||
|
find ~ -name .git -type d \
|
||
|
| grep -v '/src/\|/work/' \
|
||
|
| while read -r fp; do
|
||
|
cd "${fp%/.git}"
|
||
|
pwd
|
||
|
confirm && git pull
|
||
|
done
|