In Windows, from a Shell you can type in 'start' to open another shell instance. What is the equivalent command in OS X?
feedback
|
migrated from stackoverflow.com Oct 27 '09 at 9:46
This question came from our site for professional and enthusiast programmers.
|
⌘N (Command+N). For the other use of | |||||||||
feedback
|
|
From Finder to the following:
| |||
|
feedback
|
|
Although I suspect that command-N is what you were after, there is also a unix command called | |||
|
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. | |||
|
feedback
|
