mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-15 14:34:05 +00:00
4 lines
No EOL
128 B
Fish
4 lines
No EOL
128 B
Fish
function __fish_generate_password --description 'Generate password'
|
|
date +%s | sha256sum | base64 | head --bytes 32
|
|
echo
|
|
end |