(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| source: | |
| https://pkg.cfssl.org/ | |
| install: | |
| $ curl -s -L -o /bin/cfssl https://pkg.cfssl.org/R1.2/cfssl_linux-amd64 | |
| $ curl -s -L -o /bin/cfssljson https://pkg.cfssl.org/R1.2/cfssljson_linux-amd64 | |
| $ curl -s -L -o /bin/cfssl-certinfo https://pkg.cfssl.org/R1.2/cfssl-certinfo_linux-amd64 | |
| $ chmod +x /bin/cfssl* | |
| #!/bin/bash | |
| # Slack notification script, for use by Nagios or other similar monitoring systems. | |
| # | |
| # Author: Justin Miller | |
| # Github: github.com/colebrooke | |
| # | |
| # Usage: | |
| # | |
| # ./nagios_notify_slack.sh <SLACKCHANNEL> |
| #!/bin/bash | |
| # Put proper URLs here | |
| SOURCE_GITLAB_URL=http://source.example.net/api/v3/ | |
| DESTINATION_GITLAB_URL=http://dest.example.net/api/v3/ | |
| [email protected] | |
| SOURCE_PRIVATE_KEY= | |
| DESTINATION_PRIVATE_KEY= | |
| TMP_DIR=`mktemp -d` |