Last active
May 26, 2020 08:48
-
-
Save p3jitnath/d5370edf77c720af2a95937fb36cec76 to your computer and use it in GitHub Desktop.
Tmux on Ubuntu 20.04 LTS
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
# Install | |
sudo apt install tmux | |
# Named Session | |
tmux new -s session_name | |
# Detach | |
[Ctrl-b] d | |
# List | |
tmux ls | |
# Attach | |
tmux attach-session -t number | |
# New Session | |
tmux new-session -d 'vim' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment