5 lines
101 B
Bash
Executable file
5 lines
101 B
Bash
Executable file
#!/bin/zsh
|
|
|
|
session_name=$1
|
|
tmux new-session -d -s $session_name
|
|
tmux switch-client -t $session_name
|