start new:
tmux
start new with session name:
tmux new -s myname
| #!/bin/bash | |
| cd "$(git rev-parse --show-toplevel)" | |
| ESLINT="node_modules/.bin/eslint" | |
| pwd | |
| if [[ ! -x "$ESLINT" ]]; then | |
| printf "\t\033[41mPlease install ESlint\033[0m (npm install eslint)\n" | |
| exit 1 | |
| fi |