Mac OSX

Launching apps that aren't registered with Apple

Years ago as I got my first MacBook I encountered a problem of launching programs from unidentified developers on a Mac. Opening trustworthy and familiar programs from the internet was not a problem, but as soon as I wanted to try something less known or from a less known source, I got the error window saying that it is not possible to open a program from unidentified developer. Back then it wasn't so self explanatory to me how to handle this issue, nor it still is to many of my friends.

Show hidden files on Mac OSX – Solution script

There does exist a quite easy solution, but it lacks usability. The solution is to provide two shell scripts which execute a command that show or hide the hidden files. However it is necessary the “Finder” application after these instructions (can be done by the script). Usability wise it is not a good solution, because you have to re-navigate to the path you were before. I was not able to find a solution that works “on the fly”.

Show hidden files:
defaults write com.apple.finder AppleShowAllFiles -boolean true;killall Finder

Hide files:
defaults write com.apple.finder AppleShowAllFiles -boolean false;killall Finder

Taggings:

Show hidden files on Mac OSX

The Mac OSX Finder is used to navigate through directories and to show files. Mysteriously Apple does not provide a function to show hidden files. Therefore it is only possible to view those files in the Shell. And it is also only via the shell possible to edit or work with these files, because most programs use the standard finder open dialog.
Subscribe to Mac OSX