Open terminal here in Mac OS finder - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T18:12:13Zhttp://stackoverflow.com/feeds/question/420456http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/420456/open-terminal-here-in-mac-os-finder10Open terminal here in Mac OS finderAbdullah Jibaly2009-01-07T14:21:21Z2009-11-06T17:08:23Z
<p>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.</p>
http://stackoverflow.com/questions/420456/open-terminal-here-in-mac-os-finder/420480#4204805Answer by d0k for Open terminal here in Mac OS finderd0k2009-01-07T14:28:15Z2009-01-07T14:28:15Z<p>I use the script from <a href="http://www.entropy.ch/software/applescript/" rel="nofollow">here</a>. Just drag&drop it to finder's toolbar. It may not be the nicest solution but it is simple and it works.</p>
http://stackoverflow.com/questions/420456/open-terminal-here-in-mac-os-finder/420501#4205013Answer by Henrik Hartz for Open terminal here in Mac OS finderHenrik Hartz2009-01-07T14:35:36Z2009-01-07T14:35:36Z<p>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</p>
http://stackoverflow.com/questions/420456/open-terminal-here-in-mac-os-finder/431340#4313402Answer by iayork for Open terminal here in Mac OS finderiayork2009-01-10T17:07:54Z2009-01-10T17:07:54Z<p>If you install Big Cat Scripts (<a href="http://www.ranchero.com/bigcat/" rel="nofollow">http://www.ranchero.com/bigcat/</a>) 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):</p>
<p><hr /></p>
<pre><code>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
</code></pre>
<p><hr /></p>
<p>Similar scripts can also get you the complete path to a file on right-click, which is even more useful, I find. </p>
http://stackoverflow.com/questions/420456/open-terminal-here-in-mac-os-finder/431407#43140711Answer by redacted for Open terminal here in Mac OS finderredacted2009-01-10T17:42:53Z2009-01-10T17:42:53Z<p>This:</p>
<p><a href="http://code.google.com/p/cdto/" rel="nofollow">http://code.google.com/p/cdto/</a></p>
<p>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.</p>
http://stackoverflow.com/questions/420456/open-terminal-here-in-mac-os-finder/622827#6228274Answer by PCheese for Open terminal here in Mac OS finderPCheese2009-03-08T00:52:25Z2009-03-08T00:52:25Z<p>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 <code>.bash_profile</code> so I can type <code>cdff</code> in Terminal at any time. </p>
<pre><code>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 $@`"; };
</code></pre>
<p>This is from <a href="http://www.macosxhints.com/article.php?story=20060719155640762" rel="nofollow">this macosxhints.com Terminal hint</a>.</p>
http://stackoverflow.com/questions/420456/open-terminal-here-in-mac-os-finder/634609#6346091Answer by Gabe for Open terminal here in Mac OS finderGabe2009-03-11T13:55:05Z2009-03-11T13:55:05Z<p>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.
<a href="http://cocoatech.com/" rel="nofollow">http://cocoatech.com/</a></p>
http://stackoverflow.com/questions/420456/open-terminal-here-in-mac-os-finder/743039#7430393Answer by vgm64 for Open terminal here in Mac OS findervgm642009-04-13T04:28:48Z2009-04-13T04:28:48Z<p>Check out <a href="http://jo.irisson.free.fr/?p=59" rel="nofollow">Open Terminal Here</a>. It may be the most similar to "Open Command Window Here." I used <code>>cdto</code> and this is very similar but this seems to be a little better at dealing with Spaces... but not perfect. </p>
<p>What it has that is very nice is the ability to "<em>detect key-down events at the start of the application and used them to modify the behavior of the script</em>" allowing the script to open a new tab in the front most terminal window when invoked by holding down ⌘ key. Neat trick.</p>
<p>Also note PCheese's answer; it is probably more useful for heavy terminal users!</p>
http://stackoverflow.com/questions/420456/open-terminal-here-in-mac-os-finder/1684078#16840780Answer by Jonatan Lindén for Open terminal here in Mac OS finderJonatan Lindén2009-11-05T22:25:44Z2009-11-06T17:08:23Z<p>Ok, I realize that this is a bit late... maybe this alternative wasn't available at the moment of writing the post? </p>
<p>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:</p>
<ol>
<li>posd - which gives the current directory of the frontmost Finder window (for which you presumably make an alias cdf=cd posd) </li>
<li>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.</li>
</ol>
<p>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.</p>