Existing users, log in.  New users, create a free account.  Lost password?

Mac OS X  |  System / Utilities  |  Tweaks / Enhancements  |  OpenTerminal

OpenTerminal

OpenTerminal - 2.0.4

open terminal for specific location directly from Finder

All Time: (4.7)
This Version: Not rated (0.0)
Current Version: 2.0.4
Release Date: 2008-01-24
License: Freeware
Downloads (this version): 2,203
Downloads (all versions): 11,482

Information Related to Version:

Broken Link? Newer Version? Tell us!

Product Description:

When you are working in the Finder and you discover that you need a terminal window you have to open "Terminal" and "cd" to the folder you were working on. With OpenTerminal you just click its icon or use the Finder's contextual menu and a terminal with the correct path shows up.


The advantage of OpenTerminal over other available tools is that it can run in the background (without using processor time) and react instantly because it doesn't have to start up first. It's also much more refined than the other tools I know of: it includes workarounds for several Finder and Terminal bugs and it doesn't open superfluous terminal windows.


The sourcecode is also available.

What's new in this version:

  • Drops support for Mac OS X 10.3 Panther and Mac OS X 10.4 Tiger (version 2.0.3 is still available for download)
  • Many incompatibilities with Mac OS X 10.5 Leopard have been fixed
  • Tabs in Leopard's Terminal are now supported

Operating System Requirements:

This product is designed to run on the following operating systems:

  • Mac OS X 10.5 Intel
  • Mac OS X 10.5 PPC

Additional Requirements:

  • Mac OS X 10.5
    (Version 1.3.1 for Mac OS X 10.2 and OpenTerminal 2.0.3 for Mac OS X 10.3 and 10.4 are still available, see "Alternate OS download" below)
  • iTerm support has been tested with version 0.9.2

Screenshots:

Download Links:

Your Installed Versions:


 

Feedback Summary:

This Version:
Overall Rating: Not rated (0.0) Features: Not rated (0.0) Support: Not rated (0.0)
Ease of Use: Not rated (0.0) Quality / Stability: Not rated (0.0) Price: Not rated (0.0)
Add Your Feedback

Key to Types of Feedback:

ReviewsReviews   TroubleshootingTroubleshooting   Usage TipsUsage Tips   Developer NotesDeveloper Notes   CommentaryCommentary   Featured ReviewsFeatured Reviews

OpenTerminal ReviewLove It - Version: 2.0.4, 2/1/2008 12:00AM PST

Pandy
This is a great little utility - a real time saver.

The latest version uses Leopard's Terminal tabs to full effect - excellent stuff!
Post a commentAlert Admin

OpenTerminal Developer NoteThank you for sharing this idea! - Version: 2.0.2, 12/5/2006 02:04AM PST

Thomas Wiesehöfer (Thomas Wiesehoefer)
I have added your instructions to the OpenTerminal readme file. I've slightly modified them to work with OpenTerminal, so that "cdf" can use OpenTerminals functionality (support for Unicode file names, cd to the desktop if no windows are open, cd to the trash folder, etc.)
An especially cool thing with your command is that it works with every terminal application including xterm.
Post a commentAlert Admin

Most Recent Replies: View All 1 Replies

OpenTerminal CommentaryAnother way - Version: 2.0.2, 11/30/2006 02:16AM PST

(2 of 2 users found this comment useful)

monoclast
For anyone interested, I accomplish the same thing with a simple addition to my ~/.bashrc file:

####################################################################

# implement cdf command #

# (changes the working dir to the front-most window of the Finder) #

####################################################################

cdf()

{

eval cd "`osascript -e 'tell app "Finder" to return the quoted form of the POSIX path of (target of window 1 as alias)' 2>/dev/null`"

}

With this added to your .bashrc file, you can open a terminal window and type "cdf" to change the working directory to the front-most Finder window.

Enjoy.
Post a commentAlert Admin