Greg's Blog

helping me remember what I figure out

Starting Up My Dev Environment

| Comments

I got a bit tired of starting apache, BlueDragon and Eclipse from the command line every morning so I wrote a quick and dirty bash script that I could leave running while I went off to grab a cup of coffee. Maybe someone else will find this useful as well (requires cygwin): [code]echo "Changing to usb flash drive" cd /cygdrive/e/ echo "Starting apache" ./Apache\ Group/Apache2/bin/apache & sleep 5 echo "Starting BlueDragon" ./BlueDragon_Server_JX_62/bin/StartBlueDragon.bat & sleep 5 echo "Starting eclipse" ./eclipse/eclipse &[/code]