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