This is foo1!
Also this bla is superb.
Text Can be replaced Mimimi like this.
Footnotes
-
foo is under Foo. ↩
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)}' | |
| } |