In Windows, from a Shell you can type in 'start' to open another shell instance. What is the equivalent command in OS X?

link|improve this question
2  
This is a superuser question. – Graham Lee Oct 27 '09 at 9:07
feedback

migrated from stackoverflow.com Oct 27 '09 at 9:46

This question came from our site for professional and enthusiast programmers.

5 Answers

up vote 9 down vote accepted

⌘N (Command+N).

For the other use of start, to open arbitrary files with their associated application, use open on OS X.

link|improve this answer
+1 .... side question what's the equivalent of windows Command-R to start programs like an initial shell? Right now, I use spotlight or google desktop shell. – Kenny Oct 27 '09 at 9:20
1  
I use spotlight, Command+Space, type a few letters, select top hit. Some people use a launcher like Quicksilver for this purpose. – Greg Hewgill Oct 27 '09 at 9:25
I use/love Google's quick search box (similar to Quicksilver, made by the author of Quicksilver who now works for google...): code.google.com/p/qsb-mac – Zoran Oct 28 '09 at 6:42
feedback

From Finder to the following:

  1. Finder -> Applications -> Utilities -> Terminal (This opens he terminal application).
  2. To open a new terminal window ⌘N (Command +N)
  3. To open a new tab within the existing window ⌘T (Command+T)
link|improve this answer
feedback

Type

open /Applications/Utilities/Terminal.app
link|improve this answer
feedback

Although I suspect that command-N is what you were after, there is also a unix command called screen you can use to detach and attach console sessions. Type man screen to read up on how it works.

link|improve this answer
feedback

open /Applications/Utilities/Terminal.app will open a window if there is none, but it won't start another Terminal instance.

osascript -e "tell app \"terminal\"" -e "do script\"\"" -e "end tell" will tell the running instance to open a new window.

Ugly, but functional.

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.