Is there a way on the mac (os x 10.6) to launch multiple apps in a single command?

link|improve this question

feedback

7 Answers

up vote 1 down vote accepted

I think using Applescript would be the best way. First open up your AppleScript Editor.app then type in the following:

tell application "Mail" to activate
tell application "iCal" to activate

Of course that's just a show of concept, customise it as you see fit. Then save it as an application. Now you can either double click it to launch all your applications or use a launcher like Quicksilver or Launchbar.

link|improve this answer
I'd like a bit of software that allows you to group software and launch them all, like a launchy type thing – Mild Fuzz Nov 17 '10 at 11:36
Hah, that why the activate didn't work, I forgot the quotes – Raynet Nov 17 '10 at 11:56
feedback

I'd like a bit of software that allows you to group software and launch them all, like a launchy type thing

Quicksilver is a launchy comparable tool. I think comma separated multiple invocations/commands. (e.g. A,M,S for Adium, Mail, Safari)

link|improve this answer
1  
Quicksilver is dead, try Alfred instead alfredapp.com (not that I know if it allows groupings) – Lohoris Nov 17 '10 at 15:05
@Lo'oris thanks for the info, I've been using Launchbar for the past year or so, and only recently started to evaluate Alfred. – Daniel Beck Nov 17 '10 at 15:33
feedback

Your original question and your comments to answers are not quite the same thing.

You might consider looking at ReLaunch, to launch groups of applications.

link|improve this answer
feedback

Using Alfred, you can launch multiple apps at once.

For example, if you set all your development apps with Spotlight Comments "devapps", you'd then launch Alfred, type "devapps" then use the hotkey for "Action all visible results" (set it in General > Results prefs) and all apps would open at once.

Handy!

link|improve this answer
feedback
nano start.sh
open /Applications/app1.app/
open /Applications/app2.app/

exit

then sudo chmod a+x start.sh

later on from CLI:

./start.sh
link|improve this answer
feedback

In terminal you could do:

open -a TextEdit ; open -a Safari

To open both TextEdit and Safari, or same with Applescript:

do shell script "open -a TextEdit"

do shell script "open -a Safari"

You can then save the Applescript as an App you can click on.

Or you could use launcher application like Launchpad, Another Launcher or Quicksilver.

link|improve this answer
to make this perfect, I would need to know how to launch terminal to the focusses finder window, resize and reposition windows and hide finder dock – Mild Fuzz Nov 17 '10 at 12:22
feedback

What you're looking for is Multiple Launcher.

Multiple Launcher X is an Mac OS X-native application allowing users to create a stand-alone launcher that can open multiple items, both files and folders. Multiple Launcher X also allow users to create aliases to open documents from customized applications, for example, you can ask Preview to open the Photoshop documents. The editor fully supports drag&drop feature.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.