.lib/sh/stubexec.sh

Thu, 28 Oct 2021 21:46:26 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 28 Oct 2021 21:46:26 -0500
changeset 953
e033f9ce0d8c
parent 932
f87943eb16aa
child 957
ea852d545173
permissions
-rw-r--r--

Simplify ag/grep setup

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

stubexec() {
  local real_me="$(realpath "$0")"
  local real_bin="$(which -a $(basename $0) | grep -v "$real_me" | head -n 1)"
  if [ -x "$real_bin" ]; then
    exec $real_bin $*
  fi
}

mercurial