rcp: add Dutch translation and fix placeholder (#13136)

pull/28/head
Sebastiaan Speck 2024-06-25 14:50:28 +02:00 committed by GitHub
parent ba5ca28a43
commit 5f03795f12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 25 additions and 4 deletions

21
pages.nl/linux/rcp.md Normal file
View File

@ -0,0 +1,21 @@
# rcp
> Kopieer bestanden tussen lokale en externe systemen.
> Het imiteert het gedrag van het `cp`-commando, maar werkt tussen verschillende machines.
> Meer informatie: <https://www.gnu.org/software/inetutils/manual/html_node/rcp-invocation.html>.
- Kopieer een bestand naar een externe host:
`rcp {{pad/naar/local_file}} {{gebruikersnaam}}@{{remote_host}}:{{/pad/naar/bestemming/}}`
- Kopieer een directory recursief:
`rcp -r {{pad/naar/local_directory}} {{gebruikersnaam}}@{{remote_host}}:{{/pad/naar/bestemming/}}`
- Behoud de bestandseigenschappen:
`rcp -p {{pad/naar/local_file}} {{gebruikersnaam}}@{{remote_host}}:{{/pad/naar/bestemming/}}`
- Forceer kopiëren zonder bevestiging:
`rcp -f {{pad/naar/local_file}} {{gebruikersnaam}}@{{remote_host}}:{{/pad/naar/bestemming/}}`

View File

@ -6,16 +6,16 @@
- Copy a file to a remote host:
`rcp {{path/to/local_file}} {{username}}@{{remotehost}}:{{/path/to/destination/}}`
`rcp {{path/to/local_file}} {{username}}@{{remote_host}}:{{/path/to/destination/}}`
- Copy a directory recursively:
`rcp -r {{path/to/local_directory}} {{username}}@{{remotehost}}:{{/path/to/destination/}}`
`rcp -r {{path/to/local_directory}} {{username}}@{{remote_host}}:{{/path/to/destination/}}`
- Preserve the file attributes:
`rcp -p {{path/to/local_file}} {{username}}@{{remotehost}}:{{/path/to/destination/}}`
`rcp -p {{path/to/local_file}} {{username}}@{{remote_host}}:{{/path/to/destination/}}`
- Force copy without a confirmation:
`rcp -f {{path/to/local_file}} {{username}}@{{remotehost}}:{{/path/to/destination/}}`
`rcp -f {{path/to/local_file}} {{username}}@{{remote_host}}:{{/path/to/destination/}}`