Folder to easyly add some customisation to bash
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
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
|