Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/standard/commandline/syntax.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Command-line syntax overview for System.CommandLine
description: "An introduction to the command-line syntax that the System.CommandLine library recognizes by default. Mentions exceptions where syntax in the .NET CLI differs. Provides guidance for designing a command-line interface."
ms.date: 02/22/2022
ms.date: 04/05/2022
no-loc: [System.CommandLine]
helpviewer_keywords:
- "command line interface"
Expand Down Expand Up @@ -150,7 +150,9 @@ These commands pass a list with the same values to the command handler code, but

## Aliases

In both POSIX and Windows, it's common for some commands and options to have aliases. These are usually short forms that are easier to type. POSIX short forms typically have a single leading hyphen followed by a single character. The following commands are equivalent:
In both POSIX and Windows, it's common for some commands and options to have aliases. These are usually short forms that are easier to type. Aliases can also be used for other purposes, such as to [simulate case-insensitivity](#case-sensitivity) and to [support alternate spellings of a word](define-commands.md#define-aliases).

POSIX short forms typically have a single leading hyphen followed by a single character. The following commands are equivalent:

```dotnetcli
dotnet build --verbosity quiet
Expand Down