Tag archives for command-line

  1. Show hidden files in Finder on Mac →

    Nice not to have to download a whole app just to see hidden files in Finder: defaults write com.apple.Finder AppleShowAllFiles YES or defaults write com.apple.Finder AppleShowAllFiles NO  Thanks Macworld!

  2. Recursively removing .svn folders

    Here’s a bit of code that I always need to look up :) It finds any subversion (.svn) folders in the current directory tree and deletes them.  I guess this is one benefit to using Mercurial or Git, as they only have one hidden directory at the top level.  There’s no turning back from this…