#!/bin/bash --
# chaperon/stubs/sattach — Chaperon-proxied sattach stub
#
# Blocked: attaches to running job step I/O streams, risking interference with other jobs.

set -euo pipefail

_STUB_DIR="$(cd "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" && pwd)"
source "$_STUB_DIR/_stub_lib.sh"

chaperon_call sattach "$@"
exit $?
