#!/usr/bin/env bash
# cheat — backward-compat ALIAS for `help` (v0.9.6). `help` is the canonical
# command; `cheat` is kept so existing muscle memory / docs keep working. All
# args pass straight through, so `cheat tbn`, `cheat hl7`, `cheat -h` behave
# exactly like the `help` equivalents.
set -o pipefail
_self="${BASH_SOURCE[0]}"; [ -L "$_self" ] && _self="$(readlink "$_self")"
_BINDIR="$(cd "$(dirname "$_self")" && pwd)"
exec bash "$_BINDIR/help" "$@"
