tags:

views:

806

answers:

2

I have never used Perl, but I am really impressed by the ack, which I would like to use for source code searching, etc.

Can anyone guide me of how to make use of this excellent library on Windows?

+12  A: 

Start by installing perl http://strawberryperl.com/

Install App::Ack by typing (in a windows command shell)

C:\>cpan App::Ack

And undoubtedly this will prove useful http://learn.perl.org/

Nifle
This works like a charm :)Thanks.
rajesh pillai
Note that using strawberryperl's portable version the directory of strawberryperl must not include spaces, otherwise odd errors rise.
Ciantic
+3  A: 

You should also run the following command to enable color highlights: cpan Win32::Console::ANSI

Jay
cpan, not cspan
daxim