Skip to content

Instantly share code, notes, and snippets.

View BoeingX's full-sized avatar

boeingx BoeingX

  • Paris, France
View GitHub Profile
@BoeingX
BoeingX / tmux_local_install.sh
Last active June 22, 2016 02:29 — forked from ryin/tmux_local_install.sh
bash script for installing tmux without root access
#!/bin/bash
# Script for installing tmux on systems where you don't have root access.
# tmux will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
TMUX_VERSION=2.2
@BoeingX
BoeingX / ovpn-writer.sh
Last active April 30, 2017 20:32 — forked from renatolfc/ovpn-writer.sh
Script to generate an OpenVPN client configuration file in the unified format
#!/bin/bash
#
if [ "$#" -lt 6 ]; then
echo "./ovpn-writer.sh <server address> <protocol> "
echo " <port> <ca certificate> "
echo " <client certificate> <client key>"
echo " [tls key] "
exit 1
fi