I hereby claim:
- I am raabf on github.
- I am raabf (https://keybase.io/raabf) on keybase.
- I have a public key ASA8pD5oz0BYHs9e9rqkR0UGaOiVaPIhn7MLyATVPYVxyQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # restarts the gpg-agent | |
| # often necessary because it is so faulty program | |
| killall gpg-agent || true | |
| gpg-agent --daemon |
| #!/bin/bash | |
| # Source: http://superuser.com/a/1030779/341696 | |
| # standard sshd config path | |
| SSHD_CONFIG=/etc/ssh/sshd_config | |
| # helper functions | |
| function tablize { | |
| awk '{printf("| %-7s | %-7s | %-47s |\n", $1, $2, $3)}' | |
| } |