mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
Remove useless use of awk
This commit is contained in:
parent
d0fe3fcb5a
commit
f9a5d4ec7f
1 changed files with 1 additions and 5 deletions
|
@ -50,10 +50,6 @@ set -l sharpness_opts '
|
|||
7\tleast sharp
|
||||
'
|
||||
|
||||
function __fish_cwebp_pass_opts
|
||||
seq 0 10 | awk '{printf "%s\t\n", $0}' -
|
||||
end
|
||||
|
||||
set -l alpha_method_opts '
|
||||
0\t
|
||||
1\tdefault
|
||||
|
@ -111,7 +107,7 @@ complete -c cwebp -o strong -d 'Use strong filter'
|
|||
complete -c cwebp -o simple -d 'Use simple filter'
|
||||
complete -c cwebp -o sharp_yuv -d 'Use sharper (and slower) RGB->YUV conversion'
|
||||
complete -c cwebp -x -o partition_limit -d 'Limit quality to fit the 512k limit on the first partition (integer 0:no degradation…100:full degradation)'
|
||||
complete -c cwebp -x -o pass -a '(__fish_cwebp_pass_opts)' -d 'Analysis pass number'
|
||||
complete -c cwebp -x -o pass -a '(seq 0 10)' -d 'Analysis pass number'
|
||||
complete -c cwebp -x -o crop -d 'Crop picture with <x> <y> <v> <h> rectangle'
|
||||
complete -c cwebp -x -o resize -d 'Resize picture to <w> <h> after any cropping'
|
||||
complete -c cwebp -o mt -d 'Use multi-threading if available'
|
||||
|
|
Loading…
Reference in a new issue