I'm trying to find the hidden folder .uncrustify but I don't know where it is. How can I find this folder? I'm trying to do the following but I can't find the hidden folder .uncrustify

Examine the example config files in etc and/or read
documentation/htdocs/configuration.txt.
Copy the existing config file that closely matches your style and put in
~/.uncrustify/.  Modify to your liking.
link|improve this question

55% accept rate
feedback

4 Answers

up vote 1 down vote accepted

The ~ in ~/.uncrustify/ means your home directory. For example, if your Unix username is "lampshade", then the full path is likely to be /home/lampshade/.uncrustify/, but many programs accept the short form too.

If the directory does not exist, create it.

link|improve this answer
feedback

It's in your home folder?

link|improve this answer
is that really a question? – Matt Ellen May 21 '11 at 23:01
feedback

try this

sudo find / -name .uncrustify
link|improve this answer
feedback
ls -lR |grep .uncrustify

but you also might want to 'cd' to your root if you want to scan your whole computer

cd /
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.