I use the ack tool (like grep but more stronger) in order to match strings in files

Please take a look on the following ack example

  ./ack -a 127.0.0.1 /var/ntp/ntpstats/file

   55305 57262.736 10.106.190.191 9624 0.000460 0.00127 0.00168

I want to search only the IP 127.0.0.1 in /var/ntp/ntpstats/file

but ack return the line:

   55305 57262.736 10.106.190.191 9624 0.000460 0.00127 0.00168

So its seems that ack match the 127.0.0.1 but actually the line not have the address 127.0.0.1

Can someone give me advice how to match exactly with the ack tool? (maybe some missing flags after ack?)

thanks

link|improve this question

79% accept rate
ack is not stronger, it's weaker! :-) – Jonathan Hartley Feb 27 at 14:25
feedback

3 Answers

up vote 1 down vote accepted

The . is a meta character in Perl. It means "match any character." You have three choices.

  • ack '127\.0\.0\.1' This quotes each period, making each be an actual period.
  • ack '\Q127.0.0.1' In Perl regexes, \Q means "quote all metacharacters after the \Q"
  • ack -Q 127.0.0.1 Since the \Q is so common, ack has the -Q switch which means the same thing.

Also, I see you using the -a switch, presumably to make sure that you match files that don't have an extension. This is unnecessary if you specify a file to search through.

link|improve this answer
It's not every day thay somone gets an answer from the author of the tool they're asking about! :) – daxelrod Nov 8 '11 at 3:30
It oughta be. I have a Google Alert for ack. Other authors can do the same. – Andy Lester Nov 10 '11 at 22:06
feedback

A . in a regular expression matches any single character other than a newline. You'll need to escape it if you want to match a literal period.

./ack -a '127\.0\.0\.1' /var/ntp/ntpstats/file
link|improve this answer
feedback

Just to elaborate Ignacio's answer:

55305 57262.736 10.106.190.191 9624 0.000460 0.00127 0.00168
                                                 ^^^^^^^^^

As you can see, with the wild character (.) the above part of the line matches your search criteria.

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.