Helper function __fish_generate_password add

This commit is contained in:
EmilySeville7cfg 2021-11-25 23:34:37 +10:00 committed by ridiculousfish
parent 76e200e3f5
commit 832c0a3be2

View file

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