#!/usr/bin/env bash
# Repo-aware `grep` shim (A16). Shadows the real grep when this dir is first on
# $PATH. Delegates the allow/deny + recursion-safe real-binary exec to _shim.sh.
PRISM_SHIM_VERB=grep
export PRISM_SHIM_VERB
# shellcheck source=_shim.sh
. "$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)/_shim.sh" "$@"
