mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-06 08:58:31 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
38
tldr/windows/fc
Normal file
38
tldr/windows/fc
Normal 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 oile1}} {{path oile2}}`
|
||||
|
||||
- Perform a case-insensitive comparison:
|
||||
|
||||
`fc /c {{path oile1}} {{path oile2}}`
|
||||
|
||||
- Compare files as Unicode text:
|
||||
|
||||
`fc /u {{path oile1}} {{path oile2}}`
|
||||
|
||||
- Compare files as ASCII text:
|
||||
|
||||
`fc /l {{path oile1}} {{path oile2}}`
|
||||
|
||||
- Compare files as binary:
|
||||
|
||||
`fc /b {{path oile1}} {{path oile2}}`
|
||||
|
||||
- Disable tab-to-space expansion:
|
||||
|
||||
`fc /t {{path oile1}} {{path oile2}}`
|
||||
|
||||
- Compress whitespace (tabs and spaces) for comparisons:
|
||||
|
||||
`fc /w {{path oile1}} {{path oile2}}`
|
||||
Reference in New Issue
Block a user