mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 15:37:59 +08:00
Add completions for xxHash
This commit is contained in:
parent
e0f5fc2cb4
commit
991389603c
|
@ -133,6 +133,7 @@ Completions
|
|||
- ``tig``
|
||||
- ``windscribe``
|
||||
- ``wireshark``, ``tshark``, and ``dumpcap``
|
||||
- ``xxhsum``, ``xxh32sum``, ``xxh64sum`` and ``xxh128sum``
|
||||
- ``zopfli``, and ``zopflipng``
|
||||
|
||||
Deprecations and removed features
|
||||
|
|
1
share/completions/xxh128sum.fish
Normal file
1
share/completions/xxh128sum.fish
Normal file
|
@ -0,0 +1 @@
|
|||
complete -c xxh128sum -w xxh64sum
|
1
share/completions/xxh32sum.fish
Normal file
1
share/completions/xxh32sum.fish
Normal file
|
@ -0,0 +1 @@
|
|||
complete -c xxh32sum -w xxh64sum
|
11
share/completions/xxh64sum.fish
Normal file
11
share/completions/xxh64sum.fish
Normal file
|
@ -0,0 +1,11 @@
|
|||
complete -c xxh64sum -s V -l version -d "Display version"
|
||||
complete -c xxh64sum -l little-endian -d "Display hashes in little endian"
|
||||
complete -c xxh64sum -s h -l help -d "Display help"
|
||||
complete -c xxh64sum -s c -l check -d "Check xxHash sums"
|
||||
complete -c xxh64sum -s q -l quiet -d "Don't print OK when the checksum match"
|
||||
complete -c xxh64sum -l strict -d "Exit non-zero if any line is invalid"
|
||||
complete -c xxh64sum -l status -d "Don't output anything"
|
||||
complete -c xxh64sum -s w -l warn -d "Warn about invalid lines"
|
||||
complete -c xxh64sum -s b -d "Run a benchmark"
|
||||
complete -c xxh64sum -s B -d "Test data block size of benchmark"
|
||||
complete -c xxh64sum -s i -d "Number of benchmark iterations"
|
4
share/completions/xxhsum.fish
Normal file
4
share/completions/xxhsum.fish
Normal file
|
@ -0,0 +1,4 @@
|
|||
complete -c xxhsum -w xxh64sum
|
||||
complete -c xxhsum -o H0 -d "32bits hash"
|
||||
complete -c xxhsum -o H1 -d "64bits hash"
|
||||
complete -c xxhsum -o H2 -d "128bits hash"
|
Loading…
Reference in New Issue
Block a user