The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    terminal command snow leopard

    Discussion in 'Apple and Mac OS X' started by jl1989, May 1, 2010.

  1. jl1989

    jl1989 Notebook Evangelist

    Reputations:
    9
    Messages:
    584
    Likes Received:
    0
    Trophy Points:
    30
    hi, i'm using snow leopard. and i was just wondering what command open's up a new terminal window

    typing bash or sh would only create a bash or sh session within the same terminal window

    Yes i know i can just press command+n or go to the menu and shell->new window. but i'm looking for a typed-out command to do this.

    Example would be in ubuntu, you would type gnome-terminal in any terminal, and a new terminal window would pop up.

    Thanks.'
     
  2. doh123

    doh123 Without ME its just AWESO

    Reputations:
    996
    Messages:
    3,727
    Likes Received:
    1
    Trophy Points:
    106
    not really sure why you'd want to.. there are various ways. Opening just a single window or tab is tougher... if you want to open a whole new session of Terminal.app, you can type

    open -n /Applications/Utilities/Terminal.app

    why do you need to do this though...? there may be a better way to accomplish what your wanting...

    you could always use Applescript through osascript too something like this just to open a new window in the current session

    osascript -e "Tell Application \"Terminal\" to do script\"\""
     
  3. jl1989

    jl1989 Notebook Evangelist

    Reputations:
    9
    Messages:
    584
    Likes Received:
    0
    Trophy Points:
    30
    thanks, worked perfectly!