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

3 lines
No EOL
122 B
Fish

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