chore(prvt):Move user scripts into prvt submodule for processing
[BK-2020-03.git] / user / bkgit-status
diff --git a/user/bkgit-status b/user/bkgit-status
deleted file mode 100755 (executable)
index 5ec774e..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-
-# Date: 2020-01-02T03:21Z
-
-# Description: A bash script to perform the `git-status` command on
-#all subdirectories within the working directory.
-
-# Source: https://gist.github.com/mzabriskie/6631607
-
-#for d in ./*/ ; do (cd "$d" && echo "========================" && pwd && git status); done
-
-for d in ./*/ ; do
-    (
-       cd "$d"
-       if [ -d ./.git ];
-       then
-          #echo "========================"
-          pwd
-          git status -s
-       else
-           echo "ERR:No .git dir: "$(pwd)
-       fi
-    );
-done