Is there any way to get ack to search through a file whose filename starts with a . (e.g. .htaccess), without resorting to the --all or --unrestricted options?

I've tried adding the following to my ~/.ackrc file to no avail:

--type-set=apache=.htaccess
link|improve this question
feedback

2 Answers

It would appear that ack doesn't recognize a filename that's all extension; that is, when you specify an extension of ".htaccess", ack only looks for files with at least one character before that extension.

To get around this, you can use -u/--unrestricted in combination with the -G regex flag (to restrict the search to files whose names match a regex). For example:

$ ack -u -G '\.htaccess' pattern
link|improve this answer
To configure in .ackrc, place -u and -G/\.(bash_aliases|bash_history|bashrc)$ (for example) on separate lines. The missing space after -G is significant. The advantage is that you don't need to add these parameters and it doesn't search through .orig files and the like. The downside is of course when you don't want to use the -u option. – l0b0 Mar 6 at 15:15
feedback

You can't do it in ack 1.x. ack 2.0 will have more flexible ways of specifying files.

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.