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

uniq: pod fix #909

Merged
merged 1 commit into from
Jan 6, 2025
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
8 changes: 4 additions & 4 deletions bin/uniq
Original file line number Diff line number Diff line change
Expand Up @@ -154,17 +154,17 @@ Don't output lines that are not repeated in the input.

=item -f I<fields>

Ignore the first fields in each input line when doing compar-
isons. A field is a string of non-blank characters separated
Ignore the first fields in each input line when doing comparisons.
A field is a string of non-blank characters separated
from adjacent fields by blanks. Field numbers are one based,
i.e. the first field is field one.

=item -s I<chars>

Ignore the first chars characters in each input line when doing
comparisons. If specified in conjunction with the B<-f> option, the
first chars characters after the first fields fields will be ig-
nored. Character numbers are one based, i.e. the first character is
first chars characters after the first fields fields will be ignored.
Character numbers are one based, i.e. the first character is
character one.

=item -u
Expand Down
Loading