Fri, 26 Nov 2021 00:12:00 -0600
try a personal config
932 | 1 | realpath() { |
2 | local dir="$(dirname -- "$1")" | |
3 | local file="$(basename -- "$1")" | |
4 | (cd "$dir" 2>/dev/null && printf '%s/%s\n' "$(pwd -P)" "$file") | |
5 | } | |
6 | ||
958
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
7 | shim_filter() { |
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
8 | local binpath='' |
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
9 | while read binpath; do |
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
10 | case "$binpath" in |
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
11 | */.plenv/shims/*) |
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
12 | plenv which $1 >/dev/null 2>&1 || continue |
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
13 | ;; |
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
14 | */.asdf/shims/*) |
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
15 | asdf which $1 >/dev/null 2>&1 || continue |
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
16 | ;; |
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
17 | esac |
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
18 | echo "$binpath" |
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
19 | done |
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
20 | } |
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
21 | |
957 | 22 | realbin() { |
23 | which -a $(basename $1) | | |
24 | grep -v "$(realpath $1)" | | |
958
b883fb5c4792
filter out shims that wont work
Meredith Howard <mhoward@roomag.org>
parents:
957
diff
changeset
|
25 | shim_filter | |
957 | 26 | head -n 1 |
27 | } | |
28 | ||
915 | 29 | stubexec() { |
957 | 30 | local real_bin="$(realbin "$0")" |
915 | 31 | if [ -x "$real_bin" ]; then |
957 | 32 | exec "$real_bin" $* |
915 | 33 | fi |
957 | 34 | install_it |
35 | stubexec $* | |
915 | 36 | } |