Linux shell
If you have some commands you don't want to type all the time: write a scirpt which will do this for you. With this tutorial you'll learn how:
Open your console and type:
vi mynewscript.sh
First get into the directory where your files are. Example:
cd /home/example/myfiles/
Now write your commands which you want to run. Example:
./myscript1 start
./myscript2 start-minimized
./myscript3 stop
Press [ESC] and type ":wq".
Now run the script :)