8 lines
173 B
Bash
Executable File
8 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
echo "Active tmux Sessions"
|
|
echo
|
|
tmux ls
|
|
echo 'Choose a Session to attach to ('$(tmux ls | cut -f1 -d":" | paste -sd " ,")'): '
|
|
read session
|
|
tmux a -t $session
|