--bytes instead of -c in __fish_generate_password

This commit is contained in:
EmilySeville7cfg 2021-11-25 23:35:46 +10:00 committed by ridiculousfish
parent e08125c85a
commit 16380074a5

View File

@ -1,4 +1,4 @@
function __fish_generate_password --description 'Generate password'
date +%s | sha256sum | base64 | head -c 32
date +%s | sha256sum | base64 | head --bytes 32
echo
end