diff --git a/status.sh b/status.sh new file mode 100755 index 000000000..72231d37d --- /dev/null +++ b/status.sh @@ -0,0 +1,20 @@ +#!/bin/bash +####################################################################### +## +## Show status of all projects +## +####################################################################### + +echo "Showing status of li.strolch.dev..." ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.parent..." ; cd li.strolch.parent ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.bom..." ; cd li.strolch.bom ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.model..." ; cd li.strolch.model ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.testbase..." ; cd li.strolch.testbase ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.runtime..." ; cd li.strolch.runtime ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.service..." ; cd li.strolch.service ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.persistence.api..." ; cd li.strolch.persistence.api ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.persistence.xml..." ; cd li.strolch.persistence.xml ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.tutorialapp..." ; cd li.strolch.tutorialapp ; git status -s ; cd .. ; echo + +echo "Done." +exit 0