Gingercat1.png Welcome to...
GingerCat Software
We make software for the Web the Macintosh and linux
(among other things!) We hope you enjoy our site

Blog | New Site
A small script to open current folder in finder.

A small unix, shell script that is probably only going to work on mac os X. Use this to open the current folder in finder. Set it up say in a personal bin folder, add it to your path, chmod +x it and you can use it to open any folder you are in from the terminal. I'm sure this has probably been done before, but for what it's worth enjoy!


#!/bin/sh
# Small Script to open current Folder in Finder
dd=`pwd`
cc=`echo open`
ee=" "
ee=${cc}${ee}${dd}
${ee}
# end script




© 2006 Steve Abrahall