main
Tran Hau 2020-02-17 23:59:47 +07:00
parent c50da54efb
commit e11f4826bf
1 changed files with 17 additions and 0 deletions

17
use-tmux.md Normal file
View File

@ -0,0 +1,17 @@
# Use tmux
Imagine you want to run a long task in terminal, but you don't want to keep terminal open.
Run the task in tmux then detach session, after some time attach that session.
Show list of tmux sessions
```sh
tmux ls
```
Attach to tmux session 0:
```sh
tmux attach -t 0
```