chore: get libraries git status

This commit is contained in:
Jesús Pérez Lorenzo 2021-10-07 23:06:48 +01:00
parent a1ed441466
commit 2a34ff44d5

24
status_git.sh Executable file
View File

@ -0,0 +1,24 @@
#!/bin/bash
ITEMS="
clds
defs
datastores/defs
datastores/connectors
filters
graphql
handlers
key_of_life
lib_tests
macros
tkdr
utils
webenv
"
ORG=$(PWD)
for it in $ITEMS
do
cd "$it"
echo "_____ $it ____"
git status -s
cd $ORG
done