fish-shell/share/functions/__fish_generate_password.fish
2022-01-26 21:37:39 -08:00

4 lines
No EOL
128 B
Fish

function __fish_generate_password --description 'Generate password'
date +%s | sha256sum | base64 | head --bytes 32
echo
end