Skip to content

Instantly share code, notes, and snippets.

@adragomir
Forked from dpickett/tmux_textaurant.sh
Created December 10, 2010 18:54
Show Gist options
  • Save adragomir/736607 to your computer and use it in GitHub Desktop.
Save adragomir/736607 to your computer and use it in GitHub Desktop.
export WORKING_DIR=~/work/textaurant
cd $WORKING_DIR; mvim; gitx
tmux start-server
tmux new-session -d -s Textaurant -n work
tmux new-window -tTextaurant:1 -n server
tmux new-window -tTextaurant:2 -n test
tmux send-keys -tTextaurant:0 'cd $WORKING_DIR' C-m
tmux send-keys -tTextaurant:1 'cd $WORKING_DIR && rails s' C-m
tmux send-keys -tTextaurant:2 'cd $WORKING_DIR && bundle exec autotest -f' C-m
tmux select-window -tTextaurant:0
tmux attach-session -d -tTextaurant
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment