Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beyondgrep/ack3
ack is a grep-like search tool optimized for source code.
https://github.com/beyondgrep/ack3
ack cli grep perl
Last synced: 6 days ago
JSON representation
ack is a grep-like search tool optimized for source code.
- Host: GitHub
- URL: https://github.com/beyondgrep/ack3
- Owner: beyondgrep
- License: other
- Created: 2017-03-03T15:28:03.000Z (almost 8 years ago)
- Default Branch: dev
- Last Pushed: 2024-11-28T15:46:23.000Z (14 days ago)
- Last Synced: 2024-11-28T16:38:31.652Z (14 days ago)
- Topics: ack, cli, grep, perl
- Language: Perl
- Homepage: https://beyondgrep.com/
- Size: 3.31 MB
- Stars: 717
- Watchers: 17
- Forks: 66
- Open Issues: 149
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-ops - beyondgrep/ack3 - 03-03|2024-10-05 | ack 是一个代码搜索工具,类似于 grep,但针对搜索大型源代码树的程序员进行了优化。 | (终端命令行工具)
- awesome-terminal-art - ack - -thppt (Requirements / Static)
- stars - ack3 - like search tool optimized for source code. | beyondgrep | 720 | (Perl)
- stars - ack3 - like search tool optimized for source code. | beyondgrep | 720 | (Perl)
README
# 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]).
* [Project home page](https://beyondgrep.com/)
* [Code home page](https://github.com/beyondgrep/ack3)
* [Issue tracker](https://github.com/beyondgrep/ack3/issues)
* Mailing lists
* [ack-announce](https://groups.google.com/d/forum/ack-announce), announcements-only
* [ack-users](https://groups.google.com/d/forum/ack-users), for users of ack
* [ack-dev](https://groups.google.com/d/forum/ack-dev), for ack development
* [Build status ![Build Status](https://github.com/beyondgrep/ack3/workflows/testsuite/badge.svg?branch=dev)](https://github.com/beyondgrep/ack3/actions?query=workflow%3Atestsuite+branch%3Adev)
* [CPAN Testers](https://cpantesters.org/distro/A/ack.html)# Building
ack requires Perl 5.10.1 or higher, and it requires the
[File::Next](https://metacpan.org/pod/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
* [How to contribute](CONTRIBUTING.md)
* [Developer's Guide](DEVELOPERS.md)
* [Design Guide](DESIGN.md)# Community
See the [Community](https://beyondgrep.com/community/) page.
Please follow the [Code of Conduct](CODE_OF_CONDUCT.md) in all your interactions with our project.
# License
Copyright 2005-2023 Andy Lester.
This program is free software; you can redistribute it and/or modify
it under the terms of the
[Artistic License v2.0](https://www.perlfoundation.org/artistic_license_2_0).
See also the LICENSE.md file that comes with the ack distribution.# Support
[ack](https://github.com/beyondgrep/ack3) and [beyondgrep.com](https://beyondgrep.com) are supported by [DigitalOcean](https://m.do.co/c/6a437192f552).