Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

Rsh - Execute Remote Commands | Online Free DevTools by Hexmos

Execute remote commands with Rsh on Linux. Securely access remote hosts and manage server administration tasks. Free online tool, no registration required.

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

See Also