diff options
Diffstat (limited to 'status.sh')
-rwxr-xr-x | status.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/status.sh b/status.sh new file mode 100755 index 0000000..7d1f3bc --- /dev/null +++ b/status.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +function status { + DIR=`pwd` + cd $1 + STR=`git diff --name-only` + if [[ -n $STR ]]; then + echo -e "$2:\e[1;31m" + echo $STR + echo -e -n "\e[0m" + fi + cd $DIR +} + +status . evol-all +status client-data client-data +status server-code server-code +status server-data server-data +status tools tools +status server-code/src/evol evol-hercules |