fish-shell/share/functions/__fish_generate_password.fish

4 lines
128 B
Fish
Raw Normal View History

function __fish_generate_password --description 'Generate password'
2021-11-26 00:00:31 +00:00
date +%s | sha256sum | base64 | head --bytes 10
2021-11-25 13:34:56 +00:00
echo
end