;tools: gtree: -u shows untracked files, -I adds ignored files

This commit is contained in:
Simon Michael 2024-10-09 09:36:10 -10:00
parent ffe86d3541
commit 0cbb90cbaf

View File

@ -1,5 +1,9 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# List git files as an indented tree (because the other tools suck). # Display git-tracked files (or with -d, just directories) as a compact tree.
# With -u, show untracked files instead.
# With -u -I, show all untracked files, including ignored ones.
# With a REGEX argument, show only the paths it matches.
# Requires hledger (with a version <1.40, remove the -n below).
set -e set -e
@ -8,11 +12,14 @@ usage() {
gtree [-d] [REGEX] - list some or all git-tracked files as an indented tree. gtree [-d] [REGEX] - list some or all git-tracked files as an indented tree.
Directories are shown with a trailing slash. Directories are shown with a trailing slash.
REGEX is a case-insensitive grep regexp matching the relative file paths. REGEX is a case-insensitive grep regexp matching the relative file paths.
-d: show only directories -d: show directories only
-u: show untracked files instead
-I: with -u, also show ignored untracked files
Examples: Examples:
gtree gtree
gtree -d gtree -d
gtree -u
gtree yaml gtree yaml
gtree '(^|/)((bsd)?m|sh)ake' gtree '(^|/)((bsd)?m|sh)ake'
EOF EOF
@ -31,6 +38,14 @@ while [[ $# -gt 0 ]]; do
D=1 D=1
shift shift
;; ;;
-u)
U=1
shift
;;
-I)
I=1
shift
;;
*) *)
if [[ "$1" != -* ]] if [[ "$1" != -* ]]
then then
@ -43,17 +58,13 @@ while [[ $# -gt 0 ]]; do
;; ;;
esac esac
done done
#if [[ $HELP = 1 || ${#ARGS} -eq 0 ]]; then usage; exit; fi
if [[ $HELP = 1 ]]; then usage; exit; fi if [[ $HELP = 1 ]]; then usage; exit; fi
REGEX="${ARGS[0]:-.}" REGEX="${ARGS[0]:-.}"
ROOT=$(pwd) ROOT=$(pwd)
GITLS="git ls-files ${U:+-o $(if [[ $I = 1 ]]; then echo ''; else echo '--exclude-standard'; fi)}"
# list git-tracked files $GITLS \
# keep only the paths matching REGEX, if provided
# convert paths list to an indented tree
# keep only the directories, if -d provided
git ls-files \
| grep -iE "$REGEX" \ | grep -iE "$REGEX" \
| sed -e 's%/%/:%g' -e "s%^%account $ROOT/:%" | hledger -f- accounts -t \ | sed -e 's%/%/:%g' -e "s%^%account $ROOT/:%" \
| hledger -n -f- accounts -t \
| grep -E "$(if [[ $D = 1 ]]; then echo '/$'; else echo '.'; fi)" | grep -E "$(if [[ $D = 1 ]]; then echo '/$'; else echo '.'; fi)"