6 lines
129 B
Text
6 lines
129 B
Text
|
#!/bin/bash
|
||
|
|
||
|
[ -n "${TMUX}" ] && exit 1
|
||
|
|
||
|
tmux attach-session -t $(tmux list-sessions | sort -n | head -n1 | cut -d: -f1) || tmux
|