Dotfiles/dotfiles/bin/tmux-phpservers

12 lines
301 B
Text
Raw Normal View History

#!/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"