Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

41
tldr/windows/xcopy Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, windows]
source: https://github.com/tldr-pages/tldr.git
---
# xcopy
> Copy files and directory trees.
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/xcopy>.
- Copy the file(s) to the specified destination:
`xcopy {{path o ile_or_directory}} {{path o\destination_directory}}`
- List files that will be copied before copying:
`xcopy {{path o ile_or_directory}} {{path o\destination_directory}} /p`
- Copy the directory structure only, excluding files:
`xcopy {{path o ile_or_directory}} {{path o\destination_directory}} /t`
- Include empty directories when copying:
`xcopy {{path o ile_or_directory}} {{path o\destination_directory}} /e`
- Keep the source ACL in the destination:
`xcopy {{path o ile_or_directory}} {{path o\destination_directory}} /o`
- Allow resuming when network connection is lost:
`xcopy {{path o ile_or_directory}} {{path o\destination_directory}} /z`
- Disable the prompt when the file exists in the destination:
`xcopy {{path o ile_or_directory}} {{path o\destination_directory}} /y`
- Display help:
`xcopy /?`