X-Git-Url: https://zdv2.bktei.com/gitweb/BK-2020-03.git/blobdiff_plain/91264db571c7957c70a2441b532e32f317b9cf49..46a97d837460ca2122da3e32a963e99b1e76410d:/user/bkgit-status diff --git a/user/bkgit-status b/user/bkgit-status deleted file mode 100755 index 5ec774e..0000000 --- a/user/bkgit-status +++ /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