├── .ackrc ├── .github └── workflows │ └── testsuite.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Changes ├── DESIGN.md ├── DEVELOPERS.md ├── LICENSE.md ├── MANIFEST ├── Makefile.PL ├── README.md ├── RELEASE-NOTES.md ├── ack ├── cpanfile ├── dev ├── Cookbook.pm ├── IGNORE.md ├── RELEASE-INSTRUCTIONS.md ├── bench.pl ├── crank-mutex ├── display-option-coverage.pl ├── docker │ ├── Dockerfile │ ├── docker-compose.yml │ └── docker-entrypoint.sh ├── find-minimum-dep-versions.pl ├── generate-completion-scripts.pl ├── generate-rgb-codes.pl ├── issues-scrub.pl ├── linecount ├── linecount-fork ├── multi-process.md ├── questions.md ├── record-options ├── timings.pl └── walk ├── garage ├── ack-1.96 ├── ack-2.22 ├── ack-2.24 ├── ack-v3.0.0 ├── ack-v3.0.1 ├── ack-v3.0.2 ├── ack-v3.0.3 ├── ack-v3.1.0 ├── ack-v3.1.1 ├── ack-v3.1.2 ├── ack-v3.1.3 ├── ack-v3.2.0 ├── ack-v3.3.0 ├── ack-v3.3.1 ├── ack-v3.4.0 ├── ack-v3.5.0 ├── ack-v3.6.0 ├── ack-v3.7.0 ├── ack-v3.8.0 ├── ack-v3.8.1 ├── ack-v3.8.2 └── ack-v3.9.0 ├── lib └── App │ ├── Ack.pm │ └── Ack │ ├── ConfigDefault.pm │ ├── ConfigFinder.pm │ ├── ConfigLoader.pm │ ├── File.pm │ ├── Files.pm │ ├── Filter.pm │ └── Filter │ ├── Collection.pm │ ├── Default.pm │ ├── Extension.pm │ ├── ExtensionGroup.pm │ ├── FirstLineMatch.pm │ ├── Inverse.pm │ ├── Is.pm │ ├── IsGroup.pm │ ├── IsPath.pm │ ├── IsPathGroup.pm │ ├── Match.pm │ └── MatchGroup.pm ├── perlcriticrc ├── perltidyrc ├── squash ├── stack ├── t ├── 00-load.t ├── FilterTest.pm ├── Util.pm ├── ack-1.yaml ├── ack-Q.t ├── ack-Q.yaml ├── ack-c.yaml ├── ack-color.t ├── ack-column.yaml ├── ack-create-ackrc.t ├── ack-dump.t ├── ack-f.yaml ├── ack-files-from.t ├── ack-g.t ├── ack-g.yaml ├── ack-group.t ├── ack-h.yaml ├── ack-help-types.t ├── ack-help.t ├── ack-i.yaml ├── ack-ignore-dir.t ├── ack-ignore-file.t ├── ack-k.yaml ├── ack-l.yaml ├── ack-m.yaml ├── ack-man.t ├── ack-match.t ├── ack-n.t ├── ack-o.yaml ├── ack-output-color.t ├── ack-output.t ├── ack-output.yaml ├── ack-pager.t ├── ack-passthru.t ├── ack-print0.t ├── ack-proximate.yaml ├── ack-s.t ├── ack-s.yaml ├── ack-show-types.t ├── ack-type-del.t ├── ack-type.t ├── ack-underline.t ├── ack-v.yaml ├── ack-version.t ├── ack-w.t ├── ack-w.yaml ├── ack-x.t ├── anchored.yaml ├── bad-ackrc-opt.t ├── basic.yaml ├── boolean.t ├── boolean.yaml ├── build_regex.t ├── command-line-files.t ├── config-backwards-compat.t ├── config-finder.t ├── config-loader.t ├── context-with-newlines.t ├── context.t ├── context.yaml ├── default-filter.t ├── double-hyphen.yaml ├── empty-lines.t ├── etc │ ├── buttonhook.xml.xxx │ ├── shebang.empty.xxx │ ├── shebang.foobar.xxx │ ├── shebang.php.xxx │ ├── shebang.pl.xxx │ ├── shebang.py.xxx │ ├── shebang.rb.xxx │ └── shebang.sh.xxx ├── exit-code.t ├── ext-filter.t ├── file-filter-inverted.yaml ├── file-iterator.t ├── file-permission.t ├── filetype-detection.yaml ├── filetypes.t ├── filter.t ├── firstlinematch-filter.t ├── forbidden-options.t ├── from-stdin.t ├── highlighting.t ├── home │ └── .ackrc ├── illegal-regex.t ├── incomplete-last-line.t ├── interactive.t ├── invalid-ackrc.t ├── invalid-options.t ├── is-filter.t ├── line-endings.t ├── longopts.t ├── lowercase.t ├── match-filter.t ├── multiple-captures.t ├── mutex-options.t ├── mutex.yaml ├── named-pipes.t ├── needs-line-scan.t ├── noackrc.t ├── noenv.t ├── prescan-line-boundaries.t ├── process-substitution.t ├── range.t ├── range │ ├── america-the-beautiful.html │ ├── anchors-aweigh.html │ ├── johnny-rebeck.txt │ ├── rangefile.pm │ └── stars-and-stripes-forever.html ├── run_yaml_test.py ├── runtests.pl ├── swamp │ ├── 0 │ ├── #emacs-workfile.pl# │ ├── CMakeLists.txt │ ├── Makefile │ ├── Makefile.PL │ ├── MasterPage.master │ ├── Rakefile │ ├── Sample.ascx │ ├── Sample.asmx │ ├── blib │ │ ├── ignore.pm │ │ └── ignore.pod │ ├── c-header.h │ ├── c-source.c │ ├── constitution-100k.pl │ ├── crystallography-weenies.f │ ├── example.R │ ├── favicon.ico │ ├── file.bar │ ├── file.foo │ ├── foo_test.py │ ├── fresh.css │ ├── fresh.css.min │ ├── fresh.min.css │ ├── groceries │ │ ├── CVS │ │ │ ├── fruit │ │ │ ├── junk │ │ │ └── meat │ │ ├── RCS │ │ │ ├── fruit │ │ │ ├── junk │ │ │ └── meat │ │ ├── another_subdir │ │ │ ├── CVS │ │ │ │ ├── fruit │ │ │ │ ├── junk │ │ │ │ └── meat │ │ │ ├── RCS │ │ │ │ ├── fruit │ │ │ │ ├── junk │ │ │ │ └── meat │ │ │ ├── fruit │ │ │ ├── junk │ │ │ └── meat │ │ ├── dir.d │ │ │ ├── CVS │ │ │ │ ├── fruit │ │ │ │ ├── junk │ │ │ │ └── meat │ │ │ ├── RCS │ │ │ │ ├── fruit │ │ │ │ ├── junk │ │ │ │ └── meat │ │ │ ├── fruit │ │ │ ├── junk │ │ │ └── meat │ │ ├── fruit │ │ ├── junk │ │ ├── meat │ │ └── subdir │ │ │ ├── fruit │ │ │ ├── junk │ │ │ └── meat │ ├── html.htm │ ├── html.html │ ├── incomplete-last-line.txt │ ├── javascript.js │ ├── lua-shebang-test │ ├── minified.js.min │ ├── minified.min.js │ ├── moose-andy.jpg │ ├── not-an-#emacs-workfile# │ ├── notaMakefile │ ├── notaRakefile │ ├── notes.md │ ├── options-crlf.pl │ ├── options.pl │ ├── options.pl.bak │ ├── perl-test.t │ ├── perl-without-extension │ ├── perl.cgi │ ├── perl.handler.pod │ ├── perl.pl │ ├── perl.pm │ ├── perl.pod │ ├── perl.tar.gz │ ├── perltoot.jpg │ ├── pipe-stress-freaks.F │ ├── sample.asp │ ├── sample.aspx │ ├── sample.rake │ ├── service.svc │ ├── solution8.tar │ ├── stuff.cmake │ ├── swamp │ │ └── ignoreme.txt │ ├── test.py │ └── test_foo.py ├── test-pager ├── text │ ├── amontillado.txt │ ├── bill-of-rights.txt │ ├── constitution.txt │ ├── gettysburg.txt │ ├── movies.txt │ ├── number.txt │ ├── numbered-text.txt │ ├── ozymandias.txt │ └── raven.txt ├── trailing-whitespace.t ├── yaml.t └── zero.yaml ├── tack ├── tags └── xt ├── coding-standards.t ├── coresubs.t ├── man.t └── pod.t /.ackrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/.ackrc -------------------------------------------------------------------------------- /.github/workflows/testsuite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/.github/workflows/testsuite.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/Changes -------------------------------------------------------------------------------- /DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/DESIGN.md -------------------------------------------------------------------------------- /DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/DEVELOPERS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/MANIFEST -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/Makefile.PL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/RELEASE-NOTES.md -------------------------------------------------------------------------------- /ack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/ack -------------------------------------------------------------------------------- /cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/cpanfile -------------------------------------------------------------------------------- /dev/Cookbook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/Cookbook.pm -------------------------------------------------------------------------------- /dev/IGNORE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/IGNORE.md -------------------------------------------------------------------------------- /dev/RELEASE-INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/RELEASE-INSTRUCTIONS.md -------------------------------------------------------------------------------- /dev/bench.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/bench.pl -------------------------------------------------------------------------------- /dev/crank-mutex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/crank-mutex -------------------------------------------------------------------------------- /dev/display-option-coverage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/display-option-coverage.pl -------------------------------------------------------------------------------- /dev/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/docker/Dockerfile -------------------------------------------------------------------------------- /dev/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/docker/docker-compose.yml -------------------------------------------------------------------------------- /dev/docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /dev/find-minimum-dep-versions.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/find-minimum-dep-versions.pl -------------------------------------------------------------------------------- /dev/generate-completion-scripts.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/generate-completion-scripts.pl -------------------------------------------------------------------------------- /dev/generate-rgb-codes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/generate-rgb-codes.pl -------------------------------------------------------------------------------- /dev/issues-scrub.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/issues-scrub.pl -------------------------------------------------------------------------------- /dev/linecount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/linecount -------------------------------------------------------------------------------- /dev/linecount-fork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/linecount-fork -------------------------------------------------------------------------------- /dev/multi-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/multi-process.md -------------------------------------------------------------------------------- /dev/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/questions.md -------------------------------------------------------------------------------- /dev/record-options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/record-options -------------------------------------------------------------------------------- /dev/timings.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/timings.pl -------------------------------------------------------------------------------- /dev/walk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/dev/walk -------------------------------------------------------------------------------- /garage/ack-1.96: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-1.96 -------------------------------------------------------------------------------- /garage/ack-2.22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-2.22 -------------------------------------------------------------------------------- /garage/ack-2.24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-2.24 -------------------------------------------------------------------------------- /garage/ack-v3.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.0.0 -------------------------------------------------------------------------------- /garage/ack-v3.0.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.0.1 -------------------------------------------------------------------------------- /garage/ack-v3.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.0.2 -------------------------------------------------------------------------------- /garage/ack-v3.0.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.0.3 -------------------------------------------------------------------------------- /garage/ack-v3.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.1.0 -------------------------------------------------------------------------------- /garage/ack-v3.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.1.1 -------------------------------------------------------------------------------- /garage/ack-v3.1.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.1.2 -------------------------------------------------------------------------------- /garage/ack-v3.1.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.1.3 -------------------------------------------------------------------------------- /garage/ack-v3.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.2.0 -------------------------------------------------------------------------------- /garage/ack-v3.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.3.0 -------------------------------------------------------------------------------- /garage/ack-v3.3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.3.1 -------------------------------------------------------------------------------- /garage/ack-v3.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.4.0 -------------------------------------------------------------------------------- /garage/ack-v3.5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.5.0 -------------------------------------------------------------------------------- /garage/ack-v3.6.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.6.0 -------------------------------------------------------------------------------- /garage/ack-v3.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.7.0 -------------------------------------------------------------------------------- /garage/ack-v3.8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.8.0 -------------------------------------------------------------------------------- /garage/ack-v3.8.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.8.1 -------------------------------------------------------------------------------- /garage/ack-v3.8.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.8.2 -------------------------------------------------------------------------------- /garage/ack-v3.9.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/garage/ack-v3.9.0 -------------------------------------------------------------------------------- /lib/App/Ack.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack.pm -------------------------------------------------------------------------------- /lib/App/Ack/ConfigDefault.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/ConfigDefault.pm -------------------------------------------------------------------------------- /lib/App/Ack/ConfigFinder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/ConfigFinder.pm -------------------------------------------------------------------------------- /lib/App/Ack/ConfigLoader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/ConfigLoader.pm -------------------------------------------------------------------------------- /lib/App/Ack/File.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/File.pm -------------------------------------------------------------------------------- /lib/App/Ack/Files.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/Files.pm -------------------------------------------------------------------------------- /lib/App/Ack/Filter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/Filter.pm -------------------------------------------------------------------------------- /lib/App/Ack/Filter/Collection.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/Filter/Collection.pm -------------------------------------------------------------------------------- /lib/App/Ack/Filter/Default.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/Filter/Default.pm -------------------------------------------------------------------------------- /lib/App/Ack/Filter/Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/Filter/Extension.pm -------------------------------------------------------------------------------- /lib/App/Ack/Filter/ExtensionGroup.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/Filter/ExtensionGroup.pm -------------------------------------------------------------------------------- /lib/App/Ack/Filter/FirstLineMatch.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/Filter/FirstLineMatch.pm -------------------------------------------------------------------------------- /lib/App/Ack/Filter/Inverse.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/Filter/Inverse.pm -------------------------------------------------------------------------------- /lib/App/Ack/Filter/Is.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/Filter/Is.pm -------------------------------------------------------------------------------- /lib/App/Ack/Filter/IsGroup.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/Filter/IsGroup.pm -------------------------------------------------------------------------------- /lib/App/Ack/Filter/IsPath.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/Filter/IsPath.pm -------------------------------------------------------------------------------- /lib/App/Ack/Filter/IsPathGroup.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/Filter/IsPathGroup.pm -------------------------------------------------------------------------------- /lib/App/Ack/Filter/Match.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/Filter/Match.pm -------------------------------------------------------------------------------- /lib/App/Ack/Filter/MatchGroup.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/lib/App/Ack/Filter/MatchGroup.pm -------------------------------------------------------------------------------- /perlcriticrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/perlcriticrc -------------------------------------------------------------------------------- /perltidyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/perltidyrc -------------------------------------------------------------------------------- /squash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/squash -------------------------------------------------------------------------------- /stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/stack -------------------------------------------------------------------------------- /t/00-load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/00-load.t -------------------------------------------------------------------------------- /t/FilterTest.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/FilterTest.pm -------------------------------------------------------------------------------- /t/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/Util.pm -------------------------------------------------------------------------------- /t/ack-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-1.yaml -------------------------------------------------------------------------------- /t/ack-Q.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-Q.t -------------------------------------------------------------------------------- /t/ack-Q.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-Q.yaml -------------------------------------------------------------------------------- /t/ack-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-c.yaml -------------------------------------------------------------------------------- /t/ack-color.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-color.t -------------------------------------------------------------------------------- /t/ack-column.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-column.yaml -------------------------------------------------------------------------------- /t/ack-create-ackrc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-create-ackrc.t -------------------------------------------------------------------------------- /t/ack-dump.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-dump.t -------------------------------------------------------------------------------- /t/ack-f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-f.yaml -------------------------------------------------------------------------------- /t/ack-files-from.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-files-from.t -------------------------------------------------------------------------------- /t/ack-g.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-g.t -------------------------------------------------------------------------------- /t/ack-g.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-g.yaml -------------------------------------------------------------------------------- /t/ack-group.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-group.t -------------------------------------------------------------------------------- /t/ack-h.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-h.yaml -------------------------------------------------------------------------------- /t/ack-help-types.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-help-types.t -------------------------------------------------------------------------------- /t/ack-help.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-help.t -------------------------------------------------------------------------------- /t/ack-i.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-i.yaml -------------------------------------------------------------------------------- /t/ack-ignore-dir.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-ignore-dir.t -------------------------------------------------------------------------------- /t/ack-ignore-file.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-ignore-file.t -------------------------------------------------------------------------------- /t/ack-k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-k.yaml -------------------------------------------------------------------------------- /t/ack-l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-l.yaml -------------------------------------------------------------------------------- /t/ack-m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-m.yaml -------------------------------------------------------------------------------- /t/ack-man.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-man.t -------------------------------------------------------------------------------- /t/ack-match.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-match.t -------------------------------------------------------------------------------- /t/ack-n.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-n.t -------------------------------------------------------------------------------- /t/ack-o.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-o.yaml -------------------------------------------------------------------------------- /t/ack-output-color.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-output-color.t -------------------------------------------------------------------------------- /t/ack-output.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-output.t -------------------------------------------------------------------------------- /t/ack-output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-output.yaml -------------------------------------------------------------------------------- /t/ack-pager.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-pager.t -------------------------------------------------------------------------------- /t/ack-passthru.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-passthru.t -------------------------------------------------------------------------------- /t/ack-print0.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-print0.t -------------------------------------------------------------------------------- /t/ack-proximate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-proximate.yaml -------------------------------------------------------------------------------- /t/ack-s.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-s.t -------------------------------------------------------------------------------- /t/ack-s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-s.yaml -------------------------------------------------------------------------------- /t/ack-show-types.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-show-types.t -------------------------------------------------------------------------------- /t/ack-type-del.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-type-del.t -------------------------------------------------------------------------------- /t/ack-type.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-type.t -------------------------------------------------------------------------------- /t/ack-underline.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-underline.t -------------------------------------------------------------------------------- /t/ack-v.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-v.yaml -------------------------------------------------------------------------------- /t/ack-version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-version.t -------------------------------------------------------------------------------- /t/ack-w.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-w.t -------------------------------------------------------------------------------- /t/ack-w.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-w.yaml -------------------------------------------------------------------------------- /t/ack-x.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ack-x.t -------------------------------------------------------------------------------- /t/anchored.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/anchored.yaml -------------------------------------------------------------------------------- /t/bad-ackrc-opt.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/bad-ackrc-opt.t -------------------------------------------------------------------------------- /t/basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/basic.yaml -------------------------------------------------------------------------------- /t/boolean.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/boolean.t -------------------------------------------------------------------------------- /t/boolean.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/boolean.yaml -------------------------------------------------------------------------------- /t/build_regex.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/build_regex.t -------------------------------------------------------------------------------- /t/command-line-files.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/command-line-files.t -------------------------------------------------------------------------------- /t/config-backwards-compat.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/config-backwards-compat.t -------------------------------------------------------------------------------- /t/config-finder.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/config-finder.t -------------------------------------------------------------------------------- /t/config-loader.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/config-loader.t -------------------------------------------------------------------------------- /t/context-with-newlines.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/context-with-newlines.t -------------------------------------------------------------------------------- /t/context.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/context.t -------------------------------------------------------------------------------- /t/context.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/context.yaml -------------------------------------------------------------------------------- /t/default-filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/default-filter.t -------------------------------------------------------------------------------- /t/double-hyphen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/double-hyphen.yaml -------------------------------------------------------------------------------- /t/empty-lines.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/empty-lines.t -------------------------------------------------------------------------------- /t/etc/buttonhook.xml.xxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/etc/buttonhook.xml.xxx -------------------------------------------------------------------------------- /t/etc/shebang.empty.xxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /t/etc/shebang.foobar.xxx: -------------------------------------------------------------------------------- 1 | #!/usr/bin/foobar 2 | -------------------------------------------------------------------------------- /t/etc/shebang.php.xxx: -------------------------------------------------------------------------------- 1 | #!/usr/bin/php 2 | -------------------------------------------------------------------------------- /t/etc/shebang.pl.xxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/etc/shebang.pl.xxx -------------------------------------------------------------------------------- /t/etc/shebang.py.xxx: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | -------------------------------------------------------------------------------- /t/etc/shebang.rb.xxx: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | -------------------------------------------------------------------------------- /t/etc/shebang.sh.xxx: -------------------------------------------------------------------------------- 1 | #!/usr/bin/sh 2 | -------------------------------------------------------------------------------- /t/exit-code.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/exit-code.t -------------------------------------------------------------------------------- /t/ext-filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/ext-filter.t -------------------------------------------------------------------------------- /t/file-filter-inverted.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/file-filter-inverted.yaml -------------------------------------------------------------------------------- /t/file-iterator.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/file-iterator.t -------------------------------------------------------------------------------- /t/file-permission.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/file-permission.t -------------------------------------------------------------------------------- /t/filetype-detection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/filetype-detection.yaml -------------------------------------------------------------------------------- /t/filetypes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/filetypes.t -------------------------------------------------------------------------------- /t/filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/filter.t -------------------------------------------------------------------------------- /t/firstlinematch-filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/firstlinematch-filter.t -------------------------------------------------------------------------------- /t/forbidden-options.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/forbidden-options.t -------------------------------------------------------------------------------- /t/from-stdin.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/from-stdin.t -------------------------------------------------------------------------------- /t/highlighting.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/highlighting.t -------------------------------------------------------------------------------- /t/home/.ackrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /t/illegal-regex.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/illegal-regex.t -------------------------------------------------------------------------------- /t/incomplete-last-line.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/incomplete-last-line.t -------------------------------------------------------------------------------- /t/interactive.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/interactive.t -------------------------------------------------------------------------------- /t/invalid-ackrc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/invalid-ackrc.t -------------------------------------------------------------------------------- /t/invalid-options.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/invalid-options.t -------------------------------------------------------------------------------- /t/is-filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/is-filter.t -------------------------------------------------------------------------------- /t/line-endings.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/line-endings.t -------------------------------------------------------------------------------- /t/longopts.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/longopts.t -------------------------------------------------------------------------------- /t/lowercase.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/lowercase.t -------------------------------------------------------------------------------- /t/match-filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/match-filter.t -------------------------------------------------------------------------------- /t/multiple-captures.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/multiple-captures.t -------------------------------------------------------------------------------- /t/mutex-options.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/mutex-options.t -------------------------------------------------------------------------------- /t/mutex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/mutex.yaml -------------------------------------------------------------------------------- /t/named-pipes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/named-pipes.t -------------------------------------------------------------------------------- /t/needs-line-scan.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/needs-line-scan.t -------------------------------------------------------------------------------- /t/noackrc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/noackrc.t -------------------------------------------------------------------------------- /t/noenv.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/noenv.t -------------------------------------------------------------------------------- /t/prescan-line-boundaries.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/prescan-line-boundaries.t -------------------------------------------------------------------------------- /t/process-substitution.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/process-substitution.t -------------------------------------------------------------------------------- /t/range.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/range.t -------------------------------------------------------------------------------- /t/range/america-the-beautiful.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/range/america-the-beautiful.html -------------------------------------------------------------------------------- /t/range/anchors-aweigh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/range/anchors-aweigh.html -------------------------------------------------------------------------------- /t/range/johnny-rebeck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/range/johnny-rebeck.txt -------------------------------------------------------------------------------- /t/range/rangefile.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/range/rangefile.pm -------------------------------------------------------------------------------- /t/range/stars-and-stripes-forever.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/range/stars-and-stripes-forever.html -------------------------------------------------------------------------------- /t/run_yaml_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/run_yaml_test.py -------------------------------------------------------------------------------- /t/runtests.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/runtests.pl -------------------------------------------------------------------------------- /t/swamp/#emacs-workfile.pl#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/#emacs-workfile.pl# -------------------------------------------------------------------------------- /t/swamp/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/0 -------------------------------------------------------------------------------- /t/swamp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Not actually a cmake file! 2 | -------------------------------------------------------------------------------- /t/swamp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/Makefile -------------------------------------------------------------------------------- /t/swamp/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/Makefile.PL -------------------------------------------------------------------------------- /t/swamp/MasterPage.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/MasterPage.master -------------------------------------------------------------------------------- /t/swamp/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/Rakefile -------------------------------------------------------------------------------- /t/swamp/Sample.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/Sample.ascx -------------------------------------------------------------------------------- /t/swamp/Sample.asmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/Sample.asmx -------------------------------------------------------------------------------- /t/swamp/blib/ignore.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/blib/ignore.pm -------------------------------------------------------------------------------- /t/swamp/blib/ignore.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/blib/ignore.pod -------------------------------------------------------------------------------- /t/swamp/c-header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/c-header.h -------------------------------------------------------------------------------- /t/swamp/c-source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/c-source.c -------------------------------------------------------------------------------- /t/swamp/constitution-100k.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/constitution-100k.pl -------------------------------------------------------------------------------- /t/swamp/crystallography-weenies.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/crystallography-weenies.f -------------------------------------------------------------------------------- /t/swamp/example.R: -------------------------------------------------------------------------------- 1 | print('hi') 2 | -------------------------------------------------------------------------------- /t/swamp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/favicon.ico -------------------------------------------------------------------------------- /t/swamp/file.bar: -------------------------------------------------------------------------------- 1 | This is a bar file. 2 | -------------------------------------------------------------------------------- /t/swamp/file.foo: -------------------------------------------------------------------------------- 1 | This is a foo file. 2 | -------------------------------------------------------------------------------- /t/swamp/foo_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/foo_test.py -------------------------------------------------------------------------------- /t/swamp/fresh.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/fresh.css -------------------------------------------------------------------------------- /t/swamp/fresh.css.min: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/fresh.css.min -------------------------------------------------------------------------------- /t/swamp/fresh.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/fresh.min.css -------------------------------------------------------------------------------- /t/swamp/groceries/CVS/fruit: -------------------------------------------------------------------------------- 1 | apple 2 | pear 3 | grapes 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/CVS/junk: -------------------------------------------------------------------------------- 1 | apple fritters 2 | grape jam 3 | fried pork rinds 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/CVS/meat: -------------------------------------------------------------------------------- 1 | pork 2 | beef 3 | chicken 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/RCS/fruit: -------------------------------------------------------------------------------- 1 | apple 2 | pear 3 | grapes 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/RCS/junk: -------------------------------------------------------------------------------- 1 | apple fritters 2 | grape jam 3 | fried pork rinds 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/RCS/meat: -------------------------------------------------------------------------------- 1 | pork 2 | beef 3 | chicken 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/another_subdir/CVS/fruit: -------------------------------------------------------------------------------- 1 | apple 2 | pear 3 | grapes 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/another_subdir/CVS/junk: -------------------------------------------------------------------------------- 1 | apple fritters 2 | grape jam 3 | fried pork rinds 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/another_subdir/CVS/meat: -------------------------------------------------------------------------------- 1 | pork 2 | beef 3 | chicken 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/another_subdir/RCS/fruit: -------------------------------------------------------------------------------- 1 | apple 2 | pear 3 | grapes 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/another_subdir/RCS/junk: -------------------------------------------------------------------------------- 1 | apple fritters 2 | grape jam 3 | fried pork rinds 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/another_subdir/RCS/meat: -------------------------------------------------------------------------------- 1 | pork 2 | beef 3 | chicken 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/another_subdir/fruit: -------------------------------------------------------------------------------- 1 | apple 2 | pear 3 | grapes 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/another_subdir/junk: -------------------------------------------------------------------------------- 1 | apple fritters 2 | grape jam 3 | fried pork rinds 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/another_subdir/meat: -------------------------------------------------------------------------------- 1 | pork 2 | beef 3 | chicken 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/dir.d/CVS/fruit: -------------------------------------------------------------------------------- 1 | apple 2 | pear 3 | grapes 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/dir.d/CVS/junk: -------------------------------------------------------------------------------- 1 | apple fritters 2 | grape jam 3 | fried pork rinds 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/dir.d/CVS/meat: -------------------------------------------------------------------------------- 1 | pork 2 | beef 3 | chicken 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/dir.d/RCS/fruit: -------------------------------------------------------------------------------- 1 | apple 2 | pear 3 | grapes 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/dir.d/RCS/junk: -------------------------------------------------------------------------------- 1 | apple fritters 2 | grape jam 3 | fried pork rinds 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/dir.d/RCS/meat: -------------------------------------------------------------------------------- 1 | pork 2 | beef 3 | chicken 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/dir.d/fruit: -------------------------------------------------------------------------------- 1 | apple 2 | pear 3 | grapes 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/dir.d/junk: -------------------------------------------------------------------------------- 1 | apple fritters 2 | grape jam 3 | fried pork rinds 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/dir.d/meat: -------------------------------------------------------------------------------- 1 | pork 2 | beef 3 | chicken 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/fruit: -------------------------------------------------------------------------------- 1 | apple 2 | pear 3 | grapes 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/junk: -------------------------------------------------------------------------------- 1 | apple fritters 2 | grape jam 3 | fried pork rinds 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/meat: -------------------------------------------------------------------------------- 1 | pork 2 | beef 3 | chicken 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/subdir/fruit: -------------------------------------------------------------------------------- 1 | apple 2 | pear 3 | grapes 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/subdir/junk: -------------------------------------------------------------------------------- 1 | apple fritters 2 | grape jam 3 | fried pork rinds 4 | -------------------------------------------------------------------------------- /t/swamp/groceries/subdir/meat: -------------------------------------------------------------------------------- 1 | pork 2 | beef 3 | chicken 4 | -------------------------------------------------------------------------------- /t/swamp/html.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/html.htm -------------------------------------------------------------------------------- /t/swamp/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/html.html -------------------------------------------------------------------------------- /t/swamp/incomplete-last-line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/incomplete-last-line.txt -------------------------------------------------------------------------------- /t/swamp/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/javascript.js -------------------------------------------------------------------------------- /t/swamp/lua-shebang-test: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env lua 2 | 3 | print 'Hello, World!' 4 | -------------------------------------------------------------------------------- /t/swamp/minified.js.min: -------------------------------------------------------------------------------- 1 | var cssDir="./Stylesheets/";var NS4CSS="wango.css" 2 | -------------------------------------------------------------------------------- /t/swamp/minified.min.js: -------------------------------------------------------------------------------- 1 | var cssDir="./Stylesheets/";var NS4CSS="wango.css" 2 | -------------------------------------------------------------------------------- /t/swamp/moose-andy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/moose-andy.jpg -------------------------------------------------------------------------------- /t/swamp/not-an-#emacs-workfile#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/not-an-#emacs-workfile# -------------------------------------------------------------------------------- /t/swamp/notaMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/notaMakefile -------------------------------------------------------------------------------- /t/swamp/notaRakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/notaRakefile -------------------------------------------------------------------------------- /t/swamp/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/notes.md -------------------------------------------------------------------------------- /t/swamp/options-crlf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/options-crlf.pl -------------------------------------------------------------------------------- /t/swamp/options.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/options.pl -------------------------------------------------------------------------------- /t/swamp/options.pl.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/options.pl.bak -------------------------------------------------------------------------------- /t/swamp/perl-test.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/perl-test.t -------------------------------------------------------------------------------- /t/swamp/perl-without-extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/perl-without-extension -------------------------------------------------------------------------------- /t/swamp/perl.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/perl.cgi -------------------------------------------------------------------------------- /t/swamp/perl.handler.pod: -------------------------------------------------------------------------------- 1 | =head1 I'm Here! 2 | 3 | =cut 4 | -------------------------------------------------------------------------------- /t/swamp/perl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/perl.pl -------------------------------------------------------------------------------- /t/swamp/perl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/perl.pm -------------------------------------------------------------------------------- /t/swamp/perl.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/perl.pod -------------------------------------------------------------------------------- /t/swamp/perl.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/perl.tar.gz -------------------------------------------------------------------------------- /t/swamp/perltoot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/perltoot.jpg -------------------------------------------------------------------------------- /t/swamp/pipe-stress-freaks.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/pipe-stress-freaks.F -------------------------------------------------------------------------------- /t/swamp/sample.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/sample.asp -------------------------------------------------------------------------------- /t/swamp/sample.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/sample.aspx -------------------------------------------------------------------------------- /t/swamp/sample.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/sample.rake -------------------------------------------------------------------------------- /t/swamp/service.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/service.svc -------------------------------------------------------------------------------- /t/swamp/solution8.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/solution8.tar -------------------------------------------------------------------------------- /t/swamp/stuff.cmake: -------------------------------------------------------------------------------- 1 | # Not actually a cmake file! 2 | -------------------------------------------------------------------------------- /t/swamp/swamp/ignoreme.txt: -------------------------------------------------------------------------------- 1 | quux 2 | -------------------------------------------------------------------------------- /t/swamp/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/test.py -------------------------------------------------------------------------------- /t/swamp/test_foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/swamp/test_foo.py -------------------------------------------------------------------------------- /t/test-pager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/test-pager -------------------------------------------------------------------------------- /t/text/amontillado.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/text/amontillado.txt -------------------------------------------------------------------------------- /t/text/bill-of-rights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/text/bill-of-rights.txt -------------------------------------------------------------------------------- /t/text/constitution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/text/constitution.txt -------------------------------------------------------------------------------- /t/text/gettysburg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/text/gettysburg.txt -------------------------------------------------------------------------------- /t/text/movies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/text/movies.txt -------------------------------------------------------------------------------- /t/text/number.txt: -------------------------------------------------------------------------------- 1 | 86700 2 | -------------------------------------------------------------------------------- /t/text/numbered-text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/text/numbered-text.txt -------------------------------------------------------------------------------- /t/text/ozymandias.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/text/ozymandias.txt -------------------------------------------------------------------------------- /t/text/raven.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/text/raven.txt -------------------------------------------------------------------------------- /t/trailing-whitespace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/trailing-whitespace.t -------------------------------------------------------------------------------- /t/yaml.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/yaml.t -------------------------------------------------------------------------------- /t/zero.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/t/zero.yaml -------------------------------------------------------------------------------- /tack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/tack -------------------------------------------------------------------------------- /tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/tags -------------------------------------------------------------------------------- /xt/coding-standards.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/xt/coding-standards.t -------------------------------------------------------------------------------- /xt/coresubs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/xt/coresubs.t -------------------------------------------------------------------------------- /xt/man.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/xt/man.t -------------------------------------------------------------------------------- /xt/pod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack3/HEAD/xt/pod.t --------------------------------------------------------------------------------