зеркало из https://github.com/Azure/sonic-openssh.git
14 строки
297 B
Bash
14 строки
297 B
Bash
#!/bin/sh
|
|
# $OpenBSD: sshd-log-wrapper.sh,v 1.2 2005/02/27 11:40:30 dtucker Exp $
|
|
# Placed in the Public Domain.
|
|
#
|
|
# simple wrapper for sshd proxy mode to catch stderr output
|
|
# sh sshd-log-wrapper.sh /path/to/sshd /path/to/logfile
|
|
|
|
sshd=$1
|
|
log=$2
|
|
shift
|
|
shift
|
|
|
|
exec $sshd $@ -e 2>>$log
|