Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Create hidden yet easy-to-access folders' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Create hidden yet easy-to-access folders
Authored by: apnar on Aug 01, '05 10:49:08PM
You can open terminal and give this a shot:
find / -name '.??*'
You'll likely see a bunch of .DS_Store and such which you can grep out with something like:
find / -name '.??*' | grep -v '.DS_Store'
-apnar

[ Reply to This | # ]