init
This commit is contained in:
12
bin/pull_all
Executable file
12
bin/pull_all
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
for repo in ./*/; do
|
||||
(
|
||||
cd "$repo" || exit
|
||||
git pull
|
||||
cd -
|
||||
) > /dev/null 2<&1 &
|
||||
done
|
||||
|
||||
wait
|
||||
|
||||
echo "done"
|
||||
Reference in New Issue
Block a user