Putty link, command line network connection tool
plink [options] [user@]host [command]
plink is a network connection tool supporting several protocols.
The command-line options supported by plink are:
Show version information and exit.
Display the fingerprints of the PuTTY PGP Master Keys and exit, to aid in verifying new files released by the PuTTY team.
Show verbose messages.
Load settings from saved session.
Force use of SSH protocol (default).
Force use of Telnet protocol.
Force use of rlogin protocol.
Force raw mode.
Force serial mode.
Connect to port port.
Set remote username to user.
Read remote command(s) from local file path.
Disable interactive prompts.
Set remote password to password. CAUTION: this will likely make the password visible to other users of the local machine (via commands such as `w').
Set up a local port forwarding: listen on srcport (or srcaddr:srcport if specified), and forward any connections over the SSH connection to the destination address desthost:destport. Only works in SSH.
Set up a remote port forwarding: ask the SSH server to listen on srcport (or srcaddr:srcport if specified), and to forward any connections back over the SSH connection where the client will pass them on to the destination address desthost:destport. Only works in SSH.
Set up dynamic port forwarding. The client listens on srcport (or srcaddr:srcport if specified), and implements a SOCKS server. So you can point SOCKS-aware applications at this port and they will automatically use the SSH connection to tunnel all their connections. Only works in SSH.
Enable X11 forwarding.
Disable X11 forwarding (default).
Enable agent forwarding.
Disable agent forwarding (default).
Enable pty allocation (default if a command is NOT specified).
Disable pty allocation (default if a command is specified).
Force use of SSH protocol version 1.
Force use of SSH protocol version 2.
Enable SSH compression.
Private key file for authentication.
Remote command is SSH subsystem (SSH-2 only).
Don't start a remote command or shell at all (SSH-2 only).
Specify the configuration parameters for the serial port, in -serial mode. configuration-string should be a comma-separated list of configuration parameters as follows:
Any single digit from 5 to 9 sets the number of data bits.
`1', `1.5' or `2' sets the number of stop bits.
Any other numeric string is interpreted as a baud rate.
A single lower-case letter specifies the parity: `n' for none, `o' for odd, `e' for even, `m' for mark and `s' for space.
A single upper-case letter specifies the flow control: `N' for none, `X' for XON/XOFF, `R' for RTS/CTS and `D' for DSR/DTR.
For more information on plink, it's probably best to go and look at the manual on the PuTTY web page:
http://www.chiark.greenend.org.uk/~sgtatham/putty/
This man page isn't terribly complete. See the above web link for better documentation.