openssh-portable/regress/sshd-log-wrapper.sh

13 lines
313 B
Bash
Raw Normal View History

#!/bin/sh
# $OpenBSD: sshd-log-wrapper.sh,v 1.5 2022/01/04 08:38:53 dtucker Exp $
# Placed in the Public Domain.
#
# simple wrapper for sshd proxy mode to catch stderr output
2015-02-26 01:58:22 +01:00
# sh sshd-log-wrapper.sh /path/to/logfile /path/to/sshd [args...]
2015-02-26 01:58:22 +01:00
log=$1
shift
echo "Executing: $@" >>$log
2015-02-26 01:58:22 +01:00
exec "$@" -E$log