#!/usr/bin/env bash
# nc-diff-interface — backward-compat ALIAS for the prefix-free `diff-interface` (v0.9.6).
# The canonical command is now `diff-interface`; `nc-diff-interface` is kept so existing muscle
# memory / scripts / docs keep working. All args pass straight through.
set -o pipefail
_self="${BASH_SOURCE[0]}"; [ -L "$_self" ] && _self="$(readlink "$_self")"
_BINDIR="$(cd "$(dirname "$_self")" && pwd)"
exec bash "$_BINDIR/diff-interface" "$@"
