rsh: add Dutch translation (#13131)

pull/28/head
Sebastiaan Speck 2024-06-25 14:46:25 +02:00 committed by GitHub
parent 7b0bfaf59f
commit 928fef0ff6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 0 deletions

16
pages.nl/linux/rsh.md Normal file
View File

@ -0,0 +1,16 @@
# rsh
> Voer commando's uit op een externe host.
> Meer informatie: <https://www.gnu.org/software/inetutils/manual/html_node/rsh-invocation.html>.
- Voer een commando uit op een externe host:
`rsh {{remote_host}} {{ls -l}}`
- Voer een commando uit op een externe host met een specifieke gebruikersnaam:
`rsh {{remote_host}} -l {{gebruikersnaam}} {{ls -l}}`
- Redirect `stdin` naar `/dev/null` bij het uitvoeren van een commando op een externe host:
`rsh {{remote_host}} --no-err {{ls -l}}`