25 lines
247 B
Bash
Executable File
25 lines
247 B
Bash
Executable File
#!/bin/bash
|
|
ITEMS="
|
|
clds
|
|
defs
|
|
datastores/defs
|
|
datastores/connectors
|
|
graphql
|
|
key_of_life
|
|
lib_tests
|
|
macros
|
|
tkdr
|
|
utils
|
|
webenv
|
|
wrapfilters
|
|
wraphandlers
|
|
"
|
|
ORG=$(PWD)
|
|
for it in $ITEMS
|
|
do
|
|
cd "$it"
|
|
echo "_____ $it ____"
|
|
git status -s
|
|
cd $ORG
|
|
done
|