Last active
July 18, 2022 01:48
-
-
Save apzentral/3fe92322801258e13ef8de32199b5e6d to your computer and use it in GitHub Desktop.
Install tmux script
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 | |
TMUX_VERSION=3.3 | |
sudo apt-get update | |
sudo apt-get install -y libevent-dev libncurses-dev make | |
wget "https://github.com/tmux/tmux/releases/download/${TMUX_VERSION}/tmux-${TMUX_VERSION}.tar.gz" | |
tar xvzf "tmux-${TMUX_VERSION}.tar.gz" | |
cd "tmux-${TMUX_VERSION}/" | |
./configure && make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment