11 lines
301 B
Bash
Executable file
11 lines
301 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
tmux new-window
|
|
tmux rename-window 'Servers'
|
|
|
|
tmux send-keys "php -S http://localhost:8080"
|
|
|
|
tmux split-window -h
|
|
|
|
tmux send-keys "cd ~/.selenium-server" C-m
|
|
tmux send-keys "java -jar ~/.selenium-server/selenium-server-standalone-2.53.1.jar -Dwebdriver.chrome.drive=chromedriver"
|