-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminpath.sh
92 lines (81 loc) · 2.94 KB
/
minpath.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/bin/bash
bfg_minpath() {
local min_path=""
local abs_path=""
local segments=()
local s
# Replace $HOME with ~ and then all / with newline (\n) for loop.
local resolved_path
resolved_path="$(sed "s,^$HOME,~,; s,/,\n,g" <<< "$PWD")"
# Read path segments into an array for easy manipulation.
while IFS=$'\n' read -r s; do
segments+=( "$s" )
done <<< "${resolved_path}"
# Build the minimum path from segments.
local s_idx=0
for s in "${segments[@]}"; do
((s_idx++))
if [ -z "$s" ]; then
# When segment is empty, this indicates a leading slash.
min_path+="/"
abs_path+="/"
continue
elif [ "$s_idx" -eq "${#segments[@]}" ]; then
# Always spell the last segment out in full, and no trailing slash.
min_path+="$s"
abs_path+="$s"
continue
elif [ "$s" = "~" ]; then
# Special case for tilde to modify absolute path.
min_path+='~''/'
abs_path+="$HOME/"
continue
elif [ -d "$abs_path$s/"'.git' ]; then
# elif [ "$s_idx" -eq 2 ] || [ -d "$abs_path$s/"'.git' ]; then
# Always show the full name of git repo roots.
abs_path+="$s/"
min_path+=$''"$s"$'/'
continue
fi
# This segment can be minimized. We will use the following algorithm:
# Go through the segment string, adding one character from the segment
# to min_segment at a time. Check if that min_segment is shared by any
# other files/directories in that directory. If not, this is the minimum
# path, otherwise continue.
local i=0
local min_segment=""
for ((i=0; i<${#s}; i++ )); do
min_segment+="${s:$i:1}"
# Note that find errors, such as permission denied, are silenced
# here by piping to /dev/null.
#
# A good command to test this is cd $(mktemp -d) on Mac.
# Should generate a path with a variety of permissions.
#
# If you are modifying this or trying to debug, maybe remove that
# line while you are testing.
local matches=""
matches="$(
find -- "$abs_path"* \
-maxdepth 0 \
-name "$min_segment*" \
2>/dev/null \
| wc -l \
| awk '{ print $1 }'
)"
if [ "$matches" -eq 1 ] || [ "$i" -eq $((${#s}-1)) ]; then
if [ "$i" -ne $((${#s}-1)) ]; then
min_path+="$BOLD_OFF"
fi
min_path+="$min_segment"
if [ "$i" -ne $((${#s}-1)) ]; then
min_path+="$BOLD_ON"
fi
min_path+="/"
break;
fi
done
abs_path+="$s/"
done
PROMPT+="$min_path"
}