up vote 123 down vote favorite
60
share [g+] share [fb]

Is there something similar to the "Open Command Window Here" Windows Powertoy for Mac OS? I've found a couple plugins through a google search but wanted to see what works best for developers out there.

link|improve this question

1  
Can you clarify this more? What does the "Open Command Window Here" Windows Powertoy actually do? – Jason Coco Jan 7 '09 at 14:26
If I remember correctly, it opens a new command window with the current working directory set to whatever directory the user used the "Open Command Window Here" item on. – Steve Losh Jan 7 '09 at 14:33
1  
Yes, Steve is correct. It adds a menu item so that when you right click on a folder you can open a command prompt in that folder. – Abdullah Jibaly Jan 7 '09 at 14:59
More answers in Ask Different: “open terminal here”?apple.stackexchange.com/q/11323/8546 – Graham Perrin Jul 31 '11 at 13:49
feedback

16 Answers

up vote 84 down vote accepted

As of Mac OS X Lion 10.7, Terminal includes exactly this functionality as a Service. As with most Services, these are disabled by default, so you'll need to enable this to make it appear in the Services menu.

System Preferences > Keyboard > Keyboard Shortcuts > Services

Enable New Terminal at Folder. There's also New Terminal Tab at Folder, which will create a tab in the frontmost Terminal window (if any, else it will create a new window). These Services work in all applications, not just Finder, and they operate on folders as well as absolute pathnames selected in text.

You can even assign command keys to them.

Services appear in the Services submenu of each application menu, and within the contextual menu (Control-Click or Right-Click on a folder or pathname).

In addition, Lion Terminal will open a new terminal window if you drag a folder (or pathname) onto the Terminal application icon, and you can also drag to the tab bar of an existing window to create a new tab.

Finally, if you drag a folder or pathname onto a tab (in the tab bar) and the foreground process is the shell, it will automatically execute a "cd" command. (Dragging into the terminal view within the tab merely inserts the pathname on its own, as in older versions of Terminal.)

You can also do this from the command line or a shell script:

open -a Terminal /path/to/folder

This is the command-line equivalent of dragging a folder/pathname onto the Terminal application icon.

On a related note, Lion Terminal also has new Services for looking up man pages: Open man page in Terminal displays the selected man page topic in a new terminal window, and Search man Pages in Terminal performs "apropos" on the selected text. The former also understands man page references ("open(2)"), man page command line arguments ("2 open") and man page URLs ("x-man-page://2/open").

link|improve this answer
Thanks, this is awesome. I'm curious how you found out about these new features since I'm sure there are a lot more cool things out there. – Abdullah Jibaly Aug 14 '11 at 6:02
3  
Some of the new Lion Terminal features were demoed in the WWDC 2011 session "Lion-Sized Automation". If you are a registered developer, you can see the video here: developer.apple.com/videos/wwdc/2011 – Chris Page Aug 21 '11 at 7:47
Whats the hot key (shortcut key) in Finder to open the terminal in that path? – Shervin Oct 20 '11 at 12:14
There are no keyboard shortcuts assigned to the Services by default. You can assign them in System Preferences > Keyboard > Keyboard Shortcuts > Services, which you'll need to visit to enable them, since most Services are disabled by default. (NOTE: "hot key" has a specific meaning on Mac OS X; it's a global shortcut key registered by an application that works even when the application isn't active. Keyboard shortcuts assigned to Services only apply to the active application, and are overridden if the application already has a command with the same shortcut.) – Chris Page Oct 22 '11 at 10:55
feedback

This:

http://code.google.com/p/cdto/

It's a small app that you drag into the Finder toolbar, the icon fits in very nicely. It works with Terminal, xterm (under X11), iterm.

link|improve this answer
5  
Nice. The perfect complement to "open ." in the terminal. I wish it could open an new tab though, instead of a new window. – Pat Niemeyer Mar 10 '10 at 20:19
@Pat Niemeyer: Using the "Keyboard" option in the System Preferences, you can add a key binding to "Merge All Windows". Then, when a new window pops up, you can use the key binding to merge all open windows. Thats what I end up doing as a workaround. – Buzzy Dec 25 '10 at 22:39
1  
@Buzzy It might sound like a stupid question.. but what key binding are you using for that? – Lipis Feb 28 '11 at 19:04
1  
@Lipis: command-shift-t has been making sense for me – s29 Jan 4 at 7:23
feedback

An application that I've found indispensible as an alternative is DTerm, which actually opens a mini terminal right in your application. Plus it works with just about everything out there - Finder, XCode, PhotoShop, etc.

link|improve this answer
2  
Cool application, even works with IDEA (how they do it anyway?) – Sasha O Nov 23 '10 at 19:10
2  
Oh my GOD this is useful. Why is this not at the TOP. Paul, you are awesome. – Yuji Tomita Feb 11 '11 at 15:40
Wow, this is a great little utility. – Dana Holt Jun 24 '11 at 21:19
+1 Also available in the Mac App Store now (free): itunes.apple.com/us/app/dterm/id415520058?mt=12 – Abdullah Jibaly Aug 17 '11 at 20:12
DTerm is nice, but it doesn't support sudo or autocompletion, and the handling of history (if you have several commands you use often) is awkward at best. Someday, this will be the best soution... right now, I'm afraid it's a bit over-rated. – mmc Nov 8 '11 at 17:19
feedback

Clarification (thanks @vgm64): if you're already in Terminal, this lets you quickly change to the topmost Finder window without leaving Terminal. This way, you can avoid using the mouse.

I've added the following to my .bash_profile so I can type cdff in Terminal at any time.

function ff { osascript -e 'tell application "Finder"'\
 -e "if (${1-1} <= (count Finder windows)) then"\
 -e "get POSIX path of (target of window ${1-1} as alias)"\
 -e 'else' -e 'get POSIX path of (desktop as alias)'\
 -e 'end if' -e 'end tell'; };\

function cdff { cd "`ff $@`"; };

This is from this macosxhints.com Terminal hint.

link|improve this answer
5  
I might be getting you wrong here, but couldn't you just say open .? – Fabian Steeg Mar 8 '09 at 0:57
1  
These functions allow the terminal to cd to the what ever directory a the topmost (but background) Finder window has w/o leaving the Terminal. Unexpected bonus, PCheese. Thanks! – vgm64 Apr 13 '09 at 4:21
feedback

Check out Open Terminal Here. It may be the most similar to "Open Command Window Here." I used >cdto and this is very similar but this seems to be a little better at dealing with Spaces... but not perfect.

What it has that is very nice is the ability to "detect key-down events at the start of the application and used them to modify the behavior of the script" allowing the script to open a new tab in the front most terminal window when invoked by holding down ⌘ key. Neat trick.

Also note PCheese's answer; it is probably more useful for heavy terminal users!

link|improve this answer
feedback

I use the script from here. Just drag&drop it to finder's toolbar. It may not be the nicest solution but it is simple and it works.

link|improve this answer
i use that script too - its good enough for most things. – Chii Jan 7 '09 at 14:35
1  
I don't remember where I got mine, but I use a similar one that has a slightly different icon (and I'm sure the same functionality). Works well for me. I often to the reverse though and am in a terminal and use "open ." to open the current directory in finder. – Ted Naleid Jan 7 '09 at 22:30
feedback

Also, you can copy an item from the finder using command-C, jump into the Terminal (e.g. using Spotlight or QuickSilver) type 'cd ' and simply paste with command-v

link|improve this answer
feedback

There is an updated version of the very nice and slim Open Terminal Here posted by vgm64 and d0k. The change was made by james david low. He published the new version on his site. Just download OpenTerminalHere.zip, extract it, move the bundle to your Library/Scripts folder and drag it from there to your Finder toolbar.

What is special about it is that it always opens a new tab if a Terminal.app window is already open. Very useful! I also noted that the style of the button of the application better fits the Snow Leopard Finder.app style than cdto posted by redacted did.

link|improve this answer
feedback

This is a great one (both leopard and snow leopard): OpenTerminal/

Select the folder and click the icon. Open in new tab, new window or in same tab, you decide.

link|improve this answer
feedback

If you install Big Cat Scripts (http://www.ranchero.com/bigcat/) you can add your own contextual menu (right click) items. I don't think it comes with an Open Terminal Here applescript but I use this script (which I don't honestly remember if I wrote myself, or lifted from someone else's example):


on main(filelist)
    tell application "Finder"
    	try
    		activate
    		set frontWin to folder of front window as string
    		set frontWinPath to (get POSIX path of frontWin)
    		tell application "Terminal"
    			activate
    			do script with command "cd \"" & frontWinPath & "\""
    		end tell
    	on error error_message
    		beep
    		display dialog error_message buttons ¬
    			{"OK"} default button 1
    	end try
    end tell
end main


Similar scripts can also get you the complete path to a file on right-click, which is even more useful, I find.

link|improve this answer
feedback

It's a bit more than you're asking for, but I recommend Cocoatech's Path Finder for anyone who wishes the Finder had a bit more juice. It includes a toolbar button to open a Terminal window for the current directory, or a retractable pane with a Terminal command line at the bottom of each Finder window. Plus many other features that I now can't live without. Very mature, stable software. http://cocoatech.com/

link|improve this answer
feedback

I created a bundle with 3 apps for the finder toolbar. The other two apps do:

  • open Textmate with the current selection
  • open GitX with the current folder

For more information see here: http://nslog.de/posts/71

link|improve this answer
feedback

Ok, I realize that this is a bit late... maybe this alternative wasn't available at the moment of writing the post?

Anyway, I've found installing the pos package via Fink (a prerequisite in this case, maybe there is something similar for those who uses MacPorts?) to be the easiest solution. You get two commands:

  1. posd - which gives the current directory of the frontmost Finder window (for which you presumably make an alias cdf=cd posd)
  2. fdc - which switches the current directory of the frontmost Finder window to the Terminal pwd. This is slightly different from 'open .' which always opens a new finder window.

Yes, you have to switch to the Terminal window before writing cdf, but I suppose that's quite cheap comparing to clicking a button in the Finder toolbar. And it works with iTerm as well, you don't have to download a separate Finder toolbar button that opens an iTerm window. This is the same approach as proposed by PCheese, but you don't have to clutter your .bash_profile.

link|improve this answer
feedback

There is a bug in the AppleScript on OSX 10.6. (2 terminal windows open). I fixed this by adding the close command after activate. This close the first Terminal window.

on run
    tell application "Finder"
        try
            activate
            set frontWin to folder of front window as string
            set frontWinPath to (get POSIX path of frontWin)
            tell application "Terminal"
                activate
                close
                do script with command "cd \"" & frontWinPath & "\""
            end tell
        on error error_message
            beep
            display dialog error_message buttons ¬
                {"OK"} default button 1
        end try
    end tell
end run
link|improve this answer
Why would you want to close a Terminal window? Won't that destroy whatever work you were doing in it? – Rob Kennedy Jul 30 '10 at 15:23
feedback

If like me you turn off the Finder toolbar, this Service adds an item to every folder's contextual menu: http://blog.leenarts.net/2009/09/03/open-service-here/

This also allows you to open any folder you see in Finder tree view.

link|improve this answer
feedback

Go2Shell is a new option I just found in the Mac App Store, so it's pretty easy to install and seems to run same as cdto.

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.