Find yourself needing access to hidden files on your Mac? Well here's a simple little terminal command that will surely make your day!
Any web developer worth their salt has a bit of experience with .htaccess files. When it comes to basic web security, light url tailoring, and a handling a few 301 redirects - there's really no better approach then to tweak that bad-boy. Here's the problem though - when you pull one off your server it "magically" disappears. No worries your OS is just a little confused.
Showing Hidden Files on your Mac
Start by launching Terminal (that's the DOS prompt-y looking application that you never seem to need). Once you've got it open type these EXACT commands.
defaults write com.apple.Finder AppleShowAllFiles TRUE
Now you've got to relaunch Finder by killing it. Use killall Finder
to restart your desktop.
Once you've got your adjustments made, you'll just need to revert back to the normal setting (trust me, it saves a lot of clutter and prevents possible 'deleting issues'). To the default settings, just type the following:
defaults write com.apple.Finder AppleShowAllFiles FALSE
Again you'll need to kill the Finder, so use killall Finder
and you should be good. That’s it champ! Pretty slick right?
Show Hidden Files via Mac Save Dialogue
You can easily show hidden files in any Mac OS X save dialogue box by hitting Command+Shift+Period. Another quick way to see hidden files is by using the "ls" command in Terminal. At the command line, type the following:ls -a
. The -a flag tells the ls (list) command to show all contents, including hidden files. You then just need to specify the directory that you want to see the files in: ls -a ~/Sites/somerandomsite
. Now pop your collar and be sure to show off your skills to your "Newly-Mac" friends!