-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sort: Move help strings to markdown file (#4808)
* sort: Move help strings to markdown file * Correction for spell check
- Loading branch information
1 parent
599e7a0
commit 70b69ef
Showing
2 changed files
with
26 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!-- spell-checker:ignore MbdfhnRrV --> | ||
|
||
# sort | ||
|
||
``` | ||
sort [OPTION]... [FILE]... | ||
``` | ||
|
||
Display sorted concatenation of all FILE(s). With no FILE, or when FILE is -, read standard input. | ||
|
||
## After help | ||
|
||
The key format is `FIELD[.CHAR][OPTIONS][,FIELD[.CHAR]][OPTIONS]`. | ||
|
||
Fields by default are separated by the first whitespace after a non-whitespace character. Use `-t` to specify a custom separator. | ||
In the default case, whitespace is appended at the beginning of each field. Custom separators however are not included in fields. | ||
|
||
`FIELD` and `CHAR` both start at 1 (i.e. they are 1-indexed). If there is no end specified after a comma, the end will be the end of the line. | ||
If `CHAR` is set 0, it means the end of the field. `CHAR` defaults to 1 for the start position and to 0 for the end position. | ||
|
||
Valid options are: `MbdfhnRrV`. They override the global options for this key. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters