up vote 0 down vote favorite
share [g+] share [fb]

For instance, I don't want either program to find files that end in *.pyc. I'm sure I can do this somehow using regexes or globs, but is there a way to make locate just ignore the files altogether? It's highly doubtful that I would ever want to search for a pyc file.

link|improve this question

80% accept rate
feedback

1 Answer

In updatedb.conf, uncomment the PRUNENAMES line and add the extension .pyc. On my Ubuntu system by default it reads:

# PRUNENAMES=".git .bzr .hg .svn"

Change it to

PRUNENAMES=".git .bzr .hg .svn .pyc"

link|improve this answer
typo -- second PRUNENAMES has a pair of doublequotes at the beginning. – quack quixote Oct 2 '09 at 16:23
Fixed-thanks, quack. – CarlF Oct 3 '09 at 2:10
As it turns out, PRUNENAMES only works for directories, not for file names. – Jason Baker Nov 17 '09 at 15:26
feedback

Your Answer

 
or
required, but never shown

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