#!/bin/sh
# Percona tarball psql wrapper: exec the real client sitting next to this
# script. Shell builtins only — must stay silent (QA asserts byte-clean
# stdout) and must work under `env -i` (no PATH for external commands).
here=${0%/*}
[ "$here" = "$0" ] && here=.
exec "$here/psql.bin" "$@"
