Created
December 10, 2021 03:22
-
-
Save NickCrew/9b539c7c23ee81966588ef8943e2d4e6 to your computer and use it in GitHub Desktop.
Install Tmux
This file contains hidden or 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 | |
set -e | |
sudo apt-get update | |
sudo apt-get install -y bison gcc make pkg-config automake autoconf libncurses5-dev libevent-dev | |
mkdir -p ~/src | |
git clone https://github.com/tmux/tmux ~/src/tmux | |
cd ~/src/tmux | |
sh autogen.sh | |
./configure && make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment