RSH.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:2k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. RSH(1)                    Minix Programmer's Manual                     RSH(1)
  2. NAME
  3.      rsh - remote shell
  4. SYNOPSIS
  5.      rsh [-n] [-l username] host [command]
  6.      host [-n] [-l username] [command]
  7. DESCRIPTION
  8.      Rsh connects to the specified host, and executes the  specified  command.
  9.      Rsh  copies its standard input to the remote command, the standard output
  10.      of the remote command to its standard output, and the standard  error  of
  11.      the  remote command to its standard error.  Interrupt, quit and terminate
  12.      signals are propagated to the remote  command;  rsh  normally  terminates
  13.      when the remote command does.
  14.      The remote username used is the same as your local username,  unless  you
  15.      specify  a  different  remote  name with the -l option.  This remote name
  16.      must be equivalent  (in  the  sense  of  rlogin(1))  to  the  originating
  17.      account; no provision is made for specifying a password with a command.
  18.      If you omit command, then instead of executing a single command, you will
  19.      be logged in on the remote host using rlogin(1).
  20.      Shell metacharacters which  are  not  quoted  are  interpreted  on  local
  21.      machine,  while  quoted  metacharacters  are  interpreted  on  the remote
  22.      machine.  Thus the command
  23.           rsh otherhost cat remotefile >> localfile
  24.      appends the remote file remotefile to the localfile localfile, while
  25.           rsh otherhost cat remotefile ">>" otherremotefile
  26.      appends remotefile to otherremotefile.
  27. OPTIONS
  28.      -l username
  29.           Specify the remote user name.
  30.      -n   Connect standard input of the remote command to /dev/null.  Do  this
  31.           if rsh should not inadvertently read from standard input.
  32. SEE ALSO
  33.      rcp(1), rlogin(1), rhosts(5).
  34. 5BSD                             April 29, 1985                              1
  35. RSH(1)                    Minix Programmer's Manual                     RSH(1)
  36. BUGS
  37.      You cannot run an interactive  command  (like  rogue(6)  or  vi(1));  use
  38.      rlogin(1).
  39. 5BSD                             April 29, 1985                              2