windows/*.md: make placeholders more compatible with CLIP ones (#9872)

* Make placeholders more compatible with CLIP ones

* Update pages/windows/doskey.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* Update pages/windows/doskey.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

---------

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
This commit is contained in:
Emily Grace Seville
2023-02-20 17:23:49 +10:00
committed by GitHub
parent dcb6919bbf
commit c52cc074d9
70 changed files with 183 additions and 183 deletions

View File

@@ -5,31 +5,31 @@
- Copy the file(s) to the specified destination:
`xcopy {{path/to/file_or_directory}} {{path/to/destination}}`
`xcopy {{path\to\file_or_directory}} {{path\to\destination_directory}}`
- List files that will be copied before copying:
`xcopy {{path/to/file_or_directory}} {{path/to/destination}} /p`
`xcopy {{path\to\file_or_directory}} {{path\to\destination_directory}} /p`
- Copy the directory structure only, excluding files:
`xcopy {{path/to/file_or_directory}} {{path/to/destination}} /t`
`xcopy {{path\to\file_or_directory}} {{path\to\destination_directory}} /t`
- Include empty directories when copying:
`xcopy {{path/to/file_or_directory}} {{path/to/destination}} /e`
`xcopy {{path\to\file_or_directory}} {{path\to\destination_directory}} /e`
- Keep the source ACL in the destination:
`xcopy {{path/to/file_or_directory}} {{path/to/destination}} /o`
`xcopy {{path\to\file_or_directory}} {{path\to\destination_directory}} /o`
- Allow resuming when network connection is lost:
`xcopy {{path/to/file_or_directory}} {{path/to/destination}} /z`
`xcopy {{path\to\file_or_directory}} {{path\to\destination_directory}} /z`
- Disable the prompt when the file exists in the destination:
`xcopy {{path/to/file_or_directory}} {{path/to/destination}} /y`
`xcopy {{path\to\file_or_directory}} {{path\to\destination_directory}} /y`
- Display detailed usage information: