8 lines
86 B
Bash
Executable File
8 lines
86 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "${1}" = "landing" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
tmux kill-session -t "${1}"
|