Tag Archives: OS X

OS X: Terminal launch finder for current directory

open “`pwd`” PG TIP: I like to add this to my .bash_profile as an alias so I can just type finder to launch it: alias finder=’open “`pwd`”‘

wget page source and all related assets

wget -p -k http://site-you-want-content-from.com/dir/page_name.html You can get an OS X installation of wget here http://www.statusq.org/archives/2005/02/22/610/

OS X: Show all files

defaults write com.apple.Finder AppleShowAllFiles TRUE Stop Steve Jobs hiding files from you.

OS X: Stop MySQL

sudo /Library/StartupItems/MySQLCOM/MySQL stop

OS X: Remove 3D Dock

defaults write com.apple.dock no-glass -boolean YES; killall Dock