6 lines
100 B
Bash
6 lines
100 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Crée ou attache une session tmux
|
||
|
export TERM="xterm-256color"
|
||
|
tmux attach || tmux new
|