Created
June 20, 2014 01:34
-
-
Save satbirdd/249b888c9cac59d13319 to your computer and use it in GitHub Desktop.
ubuntu(gnome) teminate setup bash script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
gnome-terminal\ | |
--tab\ | |
--title="Neil"\ | |
--working-directory="/home/robin/works/neil-rails-app"\ | |
-e "bash -c 'rails s -p 4000'"\ | |
--tab\ | |
--title="Front"\ | |
--working-directory="/home/robin/works/neil-rails-app/vendor/frontend"\ | |
-e "bash -c 'PORT=5000 grunt serve:proxy'"\ | |
--tab\ | |
--title="Cano"\ | |
--working-directory="/home/robin/works/cano"\ | |
-e "bash -c 'rails s -p 2224'"\ | |
--tab\ | |
--title="Cannon"\ | |
--working-directory="/home/robin/works/cannon_base"\ | |
-e "bash -c 'node app.js'"\ | |
--tab\ | |
--title="GoAgent"\ | |
--working-directory="/home/robin/goagent-3.0/local"\ | |
-e "bash -c './proxy.py'" | |
gnome-terminal\ | |
--tab\ | |
--title="=Neil"\ | |
--working-directory="/home/robin/works/neil-rails-app"\ | |
--tab\ | |
--title="=Front"\ | |
--working-directory="/home/robin/works/neil-rails-app/vendor/frontend"\ | |
--tab\ | |
--title="=Cano"\ | |
--working-directory="/home/robin/works/cano"\ | |
--tab\ | |
--title="=Cannon"\ | |
--working-directory="/home/robin/works/cannon_base" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment