vote up 10 vote down star
8

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.

flag

52% accept rate
Can you clarify this more? What does the "Open Command Window Here" Windows Powertoy actually do? – Jason Coco Jan 7 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 at 14:33
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 at 14:59

8 Answers

vote up 11 vote down check

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|flag
vote up 5 vote down

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|flag
i use that script too - its good enough for most things. – Chii Jan 7 at 14:35
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 at 22:30
vote up 4 vote down

I find it more useful to switch the current working directory to the front Finder window from within Terminal (as opposed to having to use the mouse in Finder). 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|flag
I might be getting you wrong here, but couldn't you just say open .? – Fabian Steeg Mar 8 at 0:57
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 at 4:21
vote up 3 vote down

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|flag
vote up 3 vote down

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|flag
vote up 2 vote down

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|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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