Avoid invoking extra subshell in __fish_md5

This commit is contained in:
phanium 2024-04-04 22:27:37 +08:00 committed by Fabian Boehm
parent aa1a390504
commit 0a6e8468cc

View File

@ -3,12 +3,12 @@ function __fish_md5
# GNU systems
if set -q argv[2]
if test $argv[1] = -s
echo (echo $argv[2] | md5sum | string split ' ')[1]
echo $argv[2] | md5sum | string split ' ' -f 1
else
printf (_ "%s: Too many arguments %s\n") fish_md5 $argv >&2
end
else
echo (md5sum $argv[1] | string split ' ')[1]
md5sum $argv[1] | string split ' ' -f 1
end
return 0
else if type -q md5