HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

rsh — Execute commands on a remote host. More information: <https://www.gnu.org/software/inetutils/manual/

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandcommandsrshexecuteclihostmoreremote
linux

Problem

How to use the rsh command: Execute commands on a remote host. More information: <https://www.gnu.org/software/inetutils/manual/inetutils.html#rsh-invocation>.

Solution

rsh — Execute commands on a remote host. More information: <https://www.gnu.org/software/inetutils/manual/inetutils.html#rsh-invocation>.

Execute a command on a remote host:
rsh {{remote_host}} {{ls -l}}


Execute a command on a remote host with a specific username:
rsh {{remote_host}} {{[-l|--user]}} {{username}} {{ls -l}}


Redirect stdin to /dev/null when executing a command on a remote host:
rsh {{remote_host}} --no-err {{ls -l}}

Code Snippets

Execute a command on a remote host

rsh {{remote_host}} {{ls -l}}

Execute a command on a remote host with a specific username

rsh {{remote_host}} {{[-l|--user]}} {{username}} {{ls -l}}

Redirect `stdin` to `/dev/null` when executing a command on a remote host

rsh {{remote_host}} --no-err {{ls -l}}

Context

tldr-pages: linux/rsh

Revisions (0)

No revisions yet.