Rsh |
rsh ( remote shell ) is a command line computer program which can execute Command line interfaces as another user, and on another computer across a computer network. The remote system on which the rsh executes the command needs to be running the rshd Daemon (computer software).
rsh originated as part of the Unix operating system, along with Rcp, as part of the rlogin package on Berkeley Software Distribution version 4.2 in 1983. rsh has since been ported to other operating systems.
As described in the Rlogin article, the rsh protocol (computing) is not computer security for network use, because it sends unencrypted information over the network, among other things. Some implementations also authentication by sending unencrypted passwords over the network. rsh has largely been replaced by the very similar ssh ( secure shell ) program on untrusted networks like the Internet.
As an example of rsh use, the following executes the command mkdir testdir as user remoteuser on the computer remotecomputer : rsh -l remoteuser remotecomputer mkdir testdir After the command has finished rsh terminates. If no command is specified then rsh will log in on the remote system using Rlogin.
=References=
*[http://unixhelp.ed.ac.uk/CGI/man-cgirsh rsh - remote shell] - rsh man page.|
|