.lib/sh/stubexec.sh

Wed, 03 Aug 2022 00:11:19 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 03 Aug 2022 00:11:19 -0500
changeset 995
ef237971026b
parent 992
4e3e37ce84bc
child 1002
8284b9cac608
permissions
-rw-r--r--

fix arg passthrough

realpath() {
  local dir="$(dirname -- "$1")"
  local file="$(basename -- "$1")"
  (cd "$dir" 2>/dev/null && printf '%s/%s\n' "$(pwd -P)" "$file")
}

shim_filter() {
  local binpath=''
  while read binpath; do
    case "$binpath" in
      */.plenv/shims/*)
        plenv which $1 >/dev/null 2>&1 || continue
        ;;
      */.asdf/shims/*)
        asdf which $1 >/dev/null 2>&1 || continue
        ;;
    esac
    echo "$binpath"
  done
}

realbin() {
  local bn="$(basename $1)"
  which -a "$bn" |
    grep -v "$(realpath $1)" |
    shim_filter "$bn" |
    head -n 1
}

stubexec() {
  local real_bin="$(realbin "$0")"
  if [ -x "$real_bin" ]; then
    exec "$real_bin" "$@"
  fi
  install_it
  stubexec "$@"
}

stubexec "$@"

mercurial