8 lines
261 B
Bash
8 lines
261 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Here you can/should run a short script of getting your
|
||
|
# password as plain text, I personally recommend
|
||
|
# gpg key encryption of your key and decrypting it
|
||
|
# at runtime, it really depends on what kind of setup you have
|
||
|
|
||
|
echo -e "example_password";
|