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

38
tldr/windows/fc Normal file
View File

@@ -0,0 +1,38 @@
---
syntax: markdown
tags: [tldr, windows]
source: https://github.com/tldr-pages/tldr.git
---
# fc
> Compare the differences between two files or sets of files.
> Use wildcards (*) to compare sets of files.
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/fc>.
- Compare 2 specified files:
`fc {{path o ile1}} {{path o ile2}}`
- Perform a case-insensitive comparison:
`fc /c {{path o ile1}} {{path o ile2}}`
- Compare files as Unicode text:
`fc /u {{path o ile1}} {{path o ile2}}`
- Compare files as ASCII text:
`fc /l {{path o ile1}} {{path o ile2}}`
- Compare files as binary:
`fc /b {{path o ile1}} {{path o ile2}}`
- Disable tab-to-space expansion:
`fc /t {{path o ile1}} {{path o ile2}}`
- Compress whitespace (tabs and spaces) for comparisons:
`fc /w {{path o ile1}} {{path o ile2}}`