mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
rcp: add Dutch translation and fix placeholder (#13136)
This commit is contained in:
parent
ba5ca28a43
commit
5f03795f12
2 changed files with 25 additions and 4 deletions
21
pages.nl/linux/rcp.md
Normal file
21
pages.nl/linux/rcp.md
Normal 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/}}`
|
|
@ -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/}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue