mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-25 01:52:18 +00:00
18 lines
393 B
Plaintext
18 lines
393 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# rlogin
|
|
|
|
> Log in to a remote host.
|
|
> More information: <https://www.gnu.org/software/inetutils/manual/inetutils.html#rlogin-invocation>.
|
|
|
|
- Log in to a remote host:
|
|
|
|
`rlogin {{remote_host}}`
|
|
|
|
- Log in to a remote host with a specific username:
|
|
|
|
`rlogin {{[-l|--user]}} {{username}} {{remote_host}}`
|