From dce65cfb3c40ecfac855f47a20b0c931d39db3a0 Mon Sep 17 00:00:00 2001 From: Tim Rice Date: Thu, 13 Mar 2008 18:21:06 -0700 Subject: - (tim) [regress/sftp-cmds.sh regress/ssh2putty.sh] Shell portability fixes from imorgan at nas.nasa.gov --- regress/ssh2putty.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'regress/ssh2putty.sh') diff --git a/regress/ssh2putty.sh b/regress/ssh2putty.sh index 82dd44787..dfdeeff4a 100755 --- a/regress/ssh2putty.sh +++ b/regress/ssh2putty.sh @@ -10,7 +10,9 @@ PORT=$2 KEYFILE=$3 # XXX - support DSA keys too -if ! grep -q "BEGIN RSA PRIVATE KEY" $KEYFILE ; then +if grep "BEGIN RSA PRIVATE KEY" $KEYFILE >/dev/null 2>&1 ; then + : +else echo "Unsupported private key format" exit 1 fi -- cgit v1.2.3