diff --git a/share/functions/__fish_generate_password.fish b/share/functions/__fish_generate_password.fish new file mode 100644 index 000000000..14e3f1847 --- /dev/null +++ b/share/functions/__fish_generate_password.fish @@ -0,0 +1,3 @@ +function __fish_generate_password --description 'Generate password' + date +%s | sha256sum | base64 | head -c 32; echo +end \ No newline at end of file