Last active
July 22, 2021 15:54
-
-
Save shanev/651f291be30de982f6977fe7126629b1 to your computer and use it in GitHub Desktop.
tmux cheat
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
# start | |
tmux | |
# should see green bar at bottom | |
tmux list-sessions | |
tmux attach -t0 | |
# detach current session | |
# Ctrl + b, release, then d | |
# run service as a poor man's daemon | |
tmux new-session -d -s name 'executable' | |
tmux attach -t name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment