diff options
Diffstat (limited to 'gitStatusAll')
-rwxr-xr-x | gitStatusAll | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gitStatusAll b/gitStatusAll deleted file mode 100755 index a3d9de6..0000000 --- a/gitStatusAll +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -echo -for dir in *; do - check=$(file $dir) - if [[ $check == *"directory"* ]]; then - cd $dir - echo $dir - git status - echo - cd .. - fi -done |