5 lines
164 B
Bash
Executable file
5 lines
164 B
Bash
Executable file
#!/bin/sh
|
|
|
|
passg=$(openssl rand -base64 $(($RANDOM % 6 + 15)))
|
|
printf $passg | xclip -selection clipboard
|
|
notify-send "🔒Generated Password copied to clipboard."
|