From 52ef2f632120a7b0ea8db7d4eb3f5ad3ecea761c Mon Sep 17 00:00:00 2001 From: "Christian P. V. Christoffersen" <88783438+br-cpvc@users.noreply.github.com> Date: Thu, 16 Jun 2022 15:29:40 +0200 Subject: [PATCH] added git-pull-all-subdirs.sh --- git-pull-all-subdirs.sh | 1 + 1 file changed, 1 insertion(+) create mode 100755 git-pull-all-subdirs.sh diff --git a/git-pull-all-subdirs.sh b/git-pull-all-subdirs.sh new file mode 100755 index 0000000..d4c6ae3 --- /dev/null +++ b/git-pull-all-subdirs.sh @@ -0,0 +1 @@ +for d in */; do echo $d; cd $d; git pull; cd ..; done