#!/usr/bin/env bash # diff-interface — direct, on-PATH wrapper for lib/nc-diff-interface.sh (no `larry tools` prefix needed). # Short, prefix-free name (v0.9.6). Backward-compat alias: `nc-diff-interface` (same tool). # 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 "diff-interface: lib/ toolkit not found (set LARRY_LIB_DIR or LARRY_HOME)" >&2; exit 1; } if [ $# -eq 0 ]; then exec bash "$lib/nc-diff-interface.sh" --help; fi exec bash "$lib/nc-diff-interface.sh" "$@"