diff options
| author | Oliver Kiddle <opk@zsh.org> | 2025-09-25 09:28:35 +0200 |
|---|---|---|
| committer | Oliver Kiddle <opk@zsh.org> | 2025-09-25 09:28:35 +0200 |
| commit | 59247a8a6f77d7a903add949635bae066f7395e7 (patch) | |
| tree | 3082fde9e1fc612639e2877b8b9ba159e70db2f5 /Completion/Unix/Command/_uniq | |
| parent | 53966: completion update based on nmcli 1.52.0 (diff) | |
| download | zsh-59247a8a6f77d7a903add949635bae066f7395e7.tar zsh-59247a8a6f77d7a903add949635bae066f7395e7.tar.gz zsh-59247a8a6f77d7a903add949635bae066f7395e7.tar.bz2 zsh-59247a8a6f77d7a903add949635bae066f7395e7.tar.lz zsh-59247a8a6f77d7a903add949635bae066f7395e7.tar.xz zsh-59247a8a6f77d7a903add949635bae066f7395e7.tar.zst zsh-59247a8a6f77d7a903add949635bae066f7395e7.zip | |
53967: update completions affected by FreeBSD 14.3
Diffstat (limited to 'Completion/Unix/Command/_uniq')
| -rw-r--r-- | Completion/Unix/Command/_uniq | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Completion/Unix/Command/_uniq b/Completion/Unix/Command/_uniq index d2e10494a..efd556de8 100644 --- a/Completion/Unix/Command/_uniq +++ b/Completion/Unix/Command/_uniq @@ -3,16 +3,16 @@ local args args=( - '(-c --count)'{-c,--count}'[prefix lines by the number of occurrences]' - '(-d --repeated)'{-d,--repeated}'[only print duplicate lines]' - '(--all-repeated)-D-[print all duplicate lines]' - '(-D)--all-repeated=-[print all duplicate lines]::delimit method [none]:(none prepend separate)' + '(-c --count -u --unique)'{-c,--count}'[prefix lines by the number of occurrences]' + '(-d --repeated -u --unique -D --all-repeated)'{-d,--repeated}'[only print a single copy of duplicate lines]' + '(--all-repeated -d --repeated -u --unique)-D[print all duplicate lines]' + '(-D -d --repeated -u --unique)--all-repeated=-[print all duplicate lines]::delimit method [none]:(none prepend separate)' '(-f --skip-fields)'{-f,--skip-fields=}'[avoid comparing initial fields]:number of fields' '--group=-[show all items]::group separation [separate]:(separate prepend append both)' '(-i --ignore-case)'{-i,--ignore-case}'[ignore differences in case when comparing]' - '(-s --skip-chars)'{-s,--skip-chars=}'[avoid comparing initial characters]:number of characters' - '(-u --unique)'{-u,--unique}'[only print unique lines]' - '(-w --check-chars)'{-w,--check-chars=}'[specify maximum number of characters to compare]:characters' + '(-s --skip-chars)'{-s+,--skip-chars=}'[avoid comparing initial characters]:number of characters' + '(-u --unique -c --count -d --repeated -D --all-repeated)'{-u,--unique}'[only print unique lines]' + '(-w --check-chars)'{-w+,--check-chars=}'[specify maximum number of characters to compare]:characters' '(-z --zero-terminated)'{-z,--zero-terminated}'[delimit lines with null character, not newline]' '(- *)--help[display help information]' '(- *)--version[display version information]' |
