Mention plink's new -N option in usage and man page.
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Fri, 15 Oct 2004 23:32:01 +0000 (23:32 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Fri, 15 Oct 2004 23:32:01 +0000 (23:32 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@4643 cda61777-01e9-0310-a592-d414129be87e

doc/man-pl.but
doc/plink.but
plink.c
unix/uxplink.c

index 1f34dc1..cf0d419 100644 (file)
@@ -136,6 +136,10 @@ tunnel all their connections. Only works in SSH.
 
 \dd Remote command is SSH subsystem (SSH-2 only).
 
+\dt \cw{-N}
+
+\dd Don't start a remote command or shell at all (SSH-2 only).
+
 \S{plink-manpage-more-information} MORE INFORMATION
 
 For more information on plink, it's probably best to go and look at
index 3741645..e4cb0bc 100644 (file)
@@ -1,4 +1,4 @@
-\versionid $Id: plink.but,v 1.25 2004/08/19 13:14:55 jacob Exp $
+\versionid $Id: plink.but,v 1.26 2004/10/15 23:32:01 jacob Exp $
 
 \C{plink} Using the command-line connection tool Plink
 
@@ -71,6 +71,7 @@ use Plink:
 \c   -C        enable compression
 \c   -i key    private key file for authentication
 \c   -s        remote command is an SSH subsystem (SSH-2 only)
+\c   -N        don't start a shell/command (SSH-2 only)
 
 Once this works, you are ready to use Plink.
 
diff --git a/plink.c b/plink.c
index f6e2a70..b99646a 100644 (file)
--- a/plink.c
+++ b/plink.c
@@ -234,6 +234,7 @@ static void usage(void)
     printf("  -C        enable compression\n");
     printf("  -i key    private key file for authentication\n");
     printf("  -s        remote command is an SSH subsystem (SSH-2 only)\n");
+    printf("  -N        don't start a shell/command (SSH-2 only)\n");
     exit(1);
 }
 
index 146fcb3..e2b4d3d 100644 (file)
@@ -230,6 +230,7 @@ static void usage(void)
     printf("  -C        enable compression\n");
     printf("  -i key    private key file for authentication\n");
     printf("  -s        remote command is an SSH subsystem (SSH-2 only)\n");
+    printf("  -N        don't start a shell/command (SSH-2 only)\n");
     exit(1);
 }