#!/usr/bin/env bash # nc-find — direct, on-PATH wrapper for lib/nc-find.sh (no `larry tools` prefix needed). # All args pass straight through; -h/--help is handled by the underlying tool. set -o pipefail _self="${BASH_SOURCE[0]}"; [ -L "$_self" ] && _self="$(readlink "$_self")" . "$(cd "$(dirname "$_self")" && pwd)/_nc_common.sh" lib="$(_nc_resolve_lib)" || { echo "nc-find: lib/ toolkit not found (set LARRY_LIB_DIR or LARRY_HOME)" >&2; exit 1; } if [ $# -eq 0 ]; then exec bash "$lib/nc-find.sh" --help; fi exec bash "$lib/nc-find.sh" "$@"