mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:37:36 +08:00
Avoid invoking extra subshell in __fish_md5
This commit is contained in:
parent
aa1a390504
commit
0a6e8468cc
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user