mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-15 22:44:01 +00:00
3 lines
No EOL
122 B
Fish
3 lines
No EOL
122 B
Fish
function __fish_generate_password --description 'Generate password'
|
|
date +%s | sha256sum | base64 | head -c 32; echo
|
|
end |