fish-shell/share/functions/__fish_generate_password.fish

3 lines
122 B
Fish
Raw Normal View History

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