Folder to easyly add some customisation to bash
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
12345678910 |
- #!/bin/sh
- #
- if [ -z "$TMUX" ]; then
- if tmux attach -t $(tmux ls | grep -v attached | head -1 | cut -f1 -d:) || tmux; then
- exit
- else
- echo "Error while exicuting tmux. Check if tmux is installed"
- fi
- fi
|