9 lines
105 B
Bash
Executable File
9 lines
105 B
Bash
Executable File
#! /bin/sh
|
|
set -euf
|
|
|
|
if test -z "${cac_via-}"; then
|
|
exec "$@"
|
|
else
|
|
exec ssh -q "$cac_via" -t "$@"
|
|
fi
|