Quote:
Originally Posted by
solipsism 
I put "open $home/Library" into Spotlight and my Library didn't appear¡ Take another look at what changing the flags does for those that use a GUI for accessing the bulk of our data.
Terminal, not spotlight.

Put the following into an executable command file:
Code:
#!/bin/bash
open $home/Library

I use a command file to run the UNIX cleanup scripts.
Make said file executable with the
chmod command and viola. No need to edit anything and you still have full access to the Library folder via the Finder with a double click. Change the second line to include the
sudo command and you've also got root privileges to the folder. Folder stays hidden, you get root privileges and tada! You can also use the open command to gain access to UNIX system folders via the Finder as well.

Works wonders if you want to edit, lets say, Apache2 files via the GUI.
