Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sort: documentation fix #687

Merged
merged 1 commit into from
Jul 29, 2024
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
5 changes: 2 additions & 3 deletions bin/sort
Original file line number Diff line number Diff line change
Expand Up @@ -610,16 +610,15 @@ sort - sort or merge text files
sort [-cmudfinrbD] [-o output_file]
[-t field_separator] [-X regex_field_separator] [-R record_separator]
[-k pos1[,pos2]] [+pos1 [-pos2]]
[-y max_records] [-F max_files]
input_file1 [input_file2 ...]
[-y max_records] [-F max_files] [file ...]

=head1 DESCRIPTION

The sort utility sorts text files by lines (or records). Comparisons
are based on one or more sort keys extracted from each line of input,
and are performed lexicographically. By default, if keys are not given,
sort regards each input line as a single field. The sort is a merge
sort. If you don't like that, feel free to change it.
sort. The standard input will be used if no file arguments are provided.

=head1 OPTIONS

Expand Down
Loading