Created
January 29, 2020 14:05
-
-
Save ahmad-alwazzan/584a42a2e9653c78b494243ef55df97c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
sudo apt update | |
sudo apt install -y git build-essential pkg-config libevent-dev libncurses5-dev automake | |
rm -fr /tmp/tmux | |
git clone https://github.com/tmux/tmux.git /tmp/tmux | |
cd /tmp/tmux | |
git checkout 2.7 | |
sh autogen.sh | |
./configure && make | |
sudo make install | |
cd - | |
rm -fr /tmp/tmux |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment