Mention plink's new -N option in usage and man page.

[originally from svn r4643]
This commit is contained in:
Jacob Nevins 2004-10-15 23:32:01 +00:00
Родитель 70230fc0ca
Коммит 94546cdc2a
4 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -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.

Просмотреть файл

@ -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);
}

Просмотреть файл

@ -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);
}