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

@@ -10,28 +10,28 @@
- Compare two specified files:
`comp {{path/to/file_1}} {{path/to/file_2}}`
`comp {{path\to\file1}} {{path\to\file2}}`
- Compare two sets of files:
`comp {{path/to/directory_1/*}} {{path/to/directory_2/*}}`
`comp {{path\to\directory1}}\* {{path\to\directory2}}\*`
- Display differences in decimal format:
`comp /d {{path/to/file_1}} {{path/to/file_2}}`
`comp /d {{path\to\file1}} {{path\to\file2}}`
- Display differences in ASCII format:
`comp /a {{path/to/file_1}} {{path/to/file_2}}`
`comp /a {{path\to\file1}} {{path\to\file2}}`
- Display line numbers for differences:
`comp /l {{path/to/file_1}} {{path/to/file_2}}`
`comp /l {{path\to\file1}} {{path\to\file2}}`
- Compare files case-insensitively:
`comp /c {{path/to/file_1}} {{path/to/file_2}}`
`comp /c {{path\to\file1}} {{path\to\file2}}`
- Compare only the first 5 lines of each file:
`comp /n={{5}} {{path/to/file_1}} {{path/to/file_2}}`
`comp /n={{5}} {{path\to\file1}} {{path\to\file2}}`