- launches script/server in a terminal window
- launches a new terminal and cd to the trunk
- launches firefox at http://localhost:3000 with a specific firefox profile
- and launches Komodo Edit - go ahead and pick the editor of your choice
This file contains 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 | |
directory="/home/YOUR_USER_NAME/projects/YOUR_PROJECT_DIR/trunk" | |
command="script/server" | |
title_dev="Dev_Trunk" | |
title_running="Running_Trunk" | |
profile2="P2" | |
firefox_profile="p2" | |
clear | |
echo "" | |
echo "launch script/server" | |
gnome-terminal --working-directory=$directory --title=$title_running --command=$command --profile=$profile2 | |
echo "launch terminal at trunk" | |
gnome-terminal --working-directory=$directory --name=$title_dev --title=$title_dev | |
echo "launch firefox at localhost" | |
firefox http://localhost:3000 -P $firefox_profile -no-remote & | |
echo "launch komodo edit" | |
/home/YOUR_USER_NAME/applications/Komodo-Edit-5/bin/komodo & | |
echo -e "\033[1mRails development in effect...\033[0m" | |
echo "" |
I saved this in a file ~/scripts/launch_YOUR_PROJECT.sh
to execute this open a terminal and type ~$ bash ./scripts/launch_YOUR_PROJECT.sh
or create a symlink in your home directory
This file contains 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
ln -s /home/YOUR_USER_NAME/scripts/launch_YOUR_PROJECT.sh launch_YOUR_PROJECT |
then execute using ~$ bash launch_YOUR_PROJECT
NOTE: in theory you should not need to even specify bash at the command prompt, when I did not I received the following error "bash: launch_YOUR_PROJECT: command not found"
running 'which bash' returns '/bin/bash' which is specified in the shell script?, something to look into later.
No comments:
Post a Comment