A bin folder, holding helpfull scripts and commands
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
123456789 |
- #!/bin/sh
- #
- SESSION=$(tmux display-message -p '#S' 2> /dev/null)
-
- if [ "$SESSION" = "" ]; then
- tmux attach-session -t default_ssh || tmux new-session -s default_ssh
- fi
-
|