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?

link|improve this question

feedback

5 Answers

up vote 39 down vote accepted

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/

link|improve this answer
This works like a charm :) Thanks. – rajesh pillai Jun 21 '09 at 11:41
5  
Note that using strawberryperl's portable version the directory of strawberryperl must not include spaces, otherwise odd errors rise. – Ciantic Feb 16 '10 at 19:29
feedback

Not all the tests pass on all versions of Windows. You can most likely get 100% functionality from ack even if the install tests fail. Here is the command to force installation if failing tests prevent a normal install:

perl -MCPAN -e "CPAN::Shell->force(qw(install App::Ack));"
link|improve this answer
Thanks, this let me actually get it installed! :D – Nick Knowlson Dec 15 '10 at 20:27
Updated to 1.9.4, finally!! – Codest Feb 22 '11 at 9:15
feedback

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

link|improve this answer
2  
cpan, not cspan – daxim Dec 29 '09 at 11:53
feedback

If you already have msysgit installed, then you don't need to install Perl, because you already have a version. You just need to download the standalone version of ack1 and then create a batch script somewhere in your path2 with the contents:

@"C:\Program Files\Git\bin\perl" C:\path\to\ack-standalone.pl %*

You'll obviously need to edit the paths to match your msysgit installation and where you placed the ack script.

If you put the ack script itself somewhere in the path, then that will run from within your msysgit bash prompt, too3.

1: From here: http://betterthangrep.com/ack-standalone
2: I just created the file ack.bat in the msysgit bin directory C:\Program File\Git\bin. This isn't the most sensible location for it, but it works.
3: Again, I just stuck mine in the mysysgit bin directory: C:\Program Files\Git\bin\ack

link|improve this answer
feedback

If you have cygwin installed, you can simply download the standalone version. Perl is installed with cygwin. Here are the steps I followed:

$ vim .bash_profile

Remove the comments from the lines:

# if [ -d "${HOME}/bin" ] ; then
  PATH="${HOME}/bin:${PATH}"
# fi

Make a bin directory:

$ mkdir ~/bin

Download ack (from the homepage):

$ curl http://betterthangrep.com/ack-standalone > ~/bin/ack && chmod 0755 ~/bin/ack

Note that you will have to manually install curl as it doesn't come with cygwin by default.

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.