Skip to content
/ ack3 Public
forked from beyondgrep/ack3

ack is a grep-like search tool optimized for source code.

License

Notifications You must be signed in to change notification settings

j-xella/ack3

This branch is 139 commits behind beyondgrep/ack3:dev.

Folders and files

NameName
Last commit message
Last commit date
Dec 24, 2020
Nov 12, 2020
Mar 13, 2021
Aug 29, 2021
Jun 30, 2020
Nov 4, 2019
Mar 29, 2017
Aug 21, 2019
Mar 27, 2017
Apr 4, 2020
Mar 13, 2021
Jan 11, 2018
Jun 25, 2019
Aug 21, 2019
Dec 11, 2019
Mar 13, 2021
Mar 13, 2021
May 20, 2019
Mar 13, 2021
Mar 13, 2021
Sep 6, 2019
Mar 25, 2017
May 20, 2019
Mar 28, 2017
Mar 28, 2017
Dec 3, 2019

Repository files navigation

ack 3

ack is a code-searching tool, similar to grep but optimized for programmers searching large trees of source code. It is highly portable and runs on any platform that runs Perl.

ack is written and maintained by Andy Lester ([email protected]).

Building

ack requires Perl 5.10.1 or higher, and it requires the File::Next module to be installed.

Checking prerequisites

To check ack's dependencies, run this command in the shell:

perl -MFile::Next -E'say "ack is ready to build!"'

If everything is OK, you'll see:

ack is ready to build!

If your installation of Perl is outdated, you'll see an error like this:

Unrecognized switch: -Esay "ack is ready to build!"  (-h will show valid options).

If you don't have File::Next installed, you'll see an error like this:

Can't locate File/Next.pm in @INC (@INC contains: /home/andy/...
BEGIN failed--compilation aborted.

and you'll need to install File::Next yourself:

# Install File::Next dependency
perl -MCPAN -e install File::Next

Building ack

If you've got a recent enough version of Perl and you have File::Next installed, you can build ack.

# Required
perl Makefile.PL
make
make test
sudo make install # For a system-wide installation
# - or -
make ack-standalone
cp ack-standalone ~/bin/ack3 # For a personal installation

Development

Community

See the Community page.

License

Copyright 2005-2021 Andy Lester.

This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License v2.0. See also the LICENSE.md file that comes with the ack distribution.

About

ack is a grep-like search tool optimized for source code.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Perl 96.2%
  • Prolog 3.4%
  • HTML 0.2%
  • Ruby 0.1%
  • C 0.1%
  • Makefile 0.0%