mirror of https://gitee.com/openkylin/openssh.git
12 lines
285 B
Bash
12 lines
285 B
Bash
|
#!/bin/sh
|
||
|
# $OpenBSD: sshd-log-wrapper.sh,v 1.4 2016/11/25 02:56:49 dtucker Exp $
|
||
|
# Placed in the Public Domain.
|
||
|
#
|
||
|
# simple wrapper for sshd proxy mode to catch stderr output
|
||
|
# sh sshd-log-wrapper.sh /path/to/logfile /path/to/sshd [args...]
|
||
|
|
||
|
log=$1
|
||
|
shift
|
||
|
|
||
|
exec "$@" -E$log
|