├── .ackrc ├── .appveyor.yml ├── .dir-locals.el ├── .gitignore ├── .travis.yml ├── Ack.pm ├── CONTRIBUTING.md ├── Changes ├── Collection.pm ├── ConfigDefault.pm ├── ConfigFinder.pm ├── ConfigLoader.pm ├── DESIGN.md ├── DEVELOPERS.md ├── Default.pm ├── Extension.pm ├── ExtensionGroup.pm ├── Filter.pm ├── FirstLineMatch.pm ├── Inverse.pm ├── Is.pm ├── IsGroup.pm ├── IsPath.pm ├── IsPathGroup.pm ├── LICENSE.md ├── MANIFEST ├── Makefile.PL ├── Match.pm ├── MatchGroup.pm ├── README.md ├── Resource.pm ├── Resources.pm ├── ack ├── dev ├── 20110906-agenda.md ├── IGNORE.md ├── UNICODE.md ├── chats │ ├── 2011-08-21-design-ackathon.md │ └── 2011-09-01-config-finder.md ├── config-test-cases.md ├── display-option-coverage.pl ├── find-minimum-dep-versions.pl ├── generate-completion-scripts.pl ├── high-level-principles.md ├── ideas.md ├── issues-scrub.pl ├── notes.md ├── questions.md ├── roadmap.md └── timings.pl ├── garage ├── ack-1.96 ├── ack-2.02 ├── ack-2.03_01 ├── ack-2.03_02 ├── ack-2.03_03 ├── ack-2.04 ├── ack-2.05_01 ├── ack-2.08 ├── ack-2.09_01 ├── ack-2.10 ├── ack-2.12 ├── ack-2.14 ├── ack-2.16 ├── ack-2.18 ├── ack-2.20 ├── ack-2.22 ├── ack-2.24 ├── ack-2.26 └── ack-2.28 ├── perlcriticrc ├── perltidyrc ├── record-options ├── squash ├── t ├── 00-load.t ├── FilterTest.pm ├── Util.pm ├── ack-1.t ├── ack-c.t ├── ack-color.t ├── ack-column.t ├── ack-create-ackrc.t ├── ack-dump.t ├── ack-f.t ├── ack-files-from.t ├── ack-filetypes.t ├── ack-g.t ├── ack-group.t ├── ack-h.t ├── ack-help-types.t ├── ack-help.t ├── ack-i.t ├── ack-ignore-dir.t ├── ack-ignore-file.t ├── ack-interactive.t ├── ack-invalid-ackrc.t ├── ack-k.t ├── ack-known-types.t ├── ack-line.t ├── ack-m.t ├── ack-match.t ├── ack-n.t ├── ack-named-pipes.t ├── ack-o.t ├── ack-output.t ├── ack-pager.t ├── ack-passthru.t ├── ack-print0.t ├── ack-removed-options.t ├── ack-s.t ├── ack-show-types.t ├── ack-type-del.t ├── ack-type.t ├── ack-v.t ├── ack-w.t ├── ack-x.t ├── anchored.t ├── asp-net-ext.t ├── bad-ackrc-opt.t ├── basic.t ├── command-line-files.t ├── config-backwards-compat.t ├── config-finder.t ├── config-loader.t ├── context.t ├── default-filter.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-permission.t ├── filetypes.t ├── filter.t ├── firstlinematch-filter.t ├── highlighting.t ├── home │ └── .ackrc ├── illegal-regex.t ├── incomplete-last-line.t ├── inverted-file-filter.t ├── is-filter.t ├── issue244.t ├── issue276.t ├── issue491.t ├── issue522.t ├── issue562.t ├── issue571.t ├── lib │ ├── 00-coverage.t │ ├── Ack.t │ ├── Collection.t │ ├── ConfigDefault.t │ ├── ConfigFinder.t │ ├── ConfigLoader.t │ ├── Default.t │ ├── Extension.t │ ├── ExtensionGroup.t │ ├── Filter.t │ ├── FirstLineMatch.t │ ├── Inverse.t │ ├── Is.t │ ├── IsGroup.t │ ├── IsPath.t │ ├── IsPathGroup.t │ ├── Match.t │ ├── MatchGroup.t │ ├── Resource.t │ └── Resources.t ├── longopts.t ├── lua-shebang.t ├── match-filter.t ├── mutex-options.t ├── needs-line-scan.t ├── noackrc.t ├── noenv.t ├── process-substitution.t ├── r-lang-ext.t ├── resource-iterator.t ├── runtests.pl ├── swamp │ ├── 0 │ ├── #emacs-workfile.pl# │ ├── CMakeLists.txt │ ├── Makefile │ ├── Makefile.PL │ ├── MasterPage.master │ ├── Rakefile │ ├── Sample.ascx │ ├── Sample.asmx │ ├── blib │ │ ├── ignore.pir │ │ ├── ignore.pm │ │ └── ignore.pod │ ├── c-header.h │ ├── c-source.c │ ├── constitution-100k.pl │ ├── crystallography-weenies.f │ ├── example.R │ ├── file.bar │ ├── file.foo │ ├── 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 │ ├── parrot.pir │ ├── 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 ├── text │ ├── amontillado.txt │ ├── bill-of-rights.txt │ ├── constitution.txt │ ├── gettysburg.txt │ ├── number.txt │ ├── numbered-text.txt │ ├── ozymandias.txt │ └── raven.txt └── zero.t ├── tack ├── test-pager └── xt ├── coding-standards.t ├── man.t ├── perlcritic.t ├── pod.t └── whitespace.t /.ackrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/.ackrc -------------------------------------------------------------------------------- /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/.travis.yml -------------------------------------------------------------------------------- /Ack.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/Ack.pm -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/Changes -------------------------------------------------------------------------------- /Collection.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/Collection.pm -------------------------------------------------------------------------------- /ConfigDefault.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/ConfigDefault.pm -------------------------------------------------------------------------------- /ConfigFinder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/ConfigFinder.pm -------------------------------------------------------------------------------- /ConfigLoader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/ConfigLoader.pm -------------------------------------------------------------------------------- /DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/DESIGN.md -------------------------------------------------------------------------------- /DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/DEVELOPERS.md -------------------------------------------------------------------------------- /Default.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/Default.pm -------------------------------------------------------------------------------- /Extension.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/Extension.pm -------------------------------------------------------------------------------- /ExtensionGroup.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/ExtensionGroup.pm -------------------------------------------------------------------------------- /Filter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/Filter.pm -------------------------------------------------------------------------------- /FirstLineMatch.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/FirstLineMatch.pm -------------------------------------------------------------------------------- /Inverse.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/Inverse.pm -------------------------------------------------------------------------------- /Is.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/Is.pm -------------------------------------------------------------------------------- /IsGroup.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/IsGroup.pm -------------------------------------------------------------------------------- /IsPath.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/IsPath.pm -------------------------------------------------------------------------------- /IsPathGroup.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/IsPathGroup.pm -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/MANIFEST -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/Makefile.PL -------------------------------------------------------------------------------- /Match.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/Match.pm -------------------------------------------------------------------------------- /MatchGroup.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/MatchGroup.pm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/README.md -------------------------------------------------------------------------------- /Resource.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/Resource.pm -------------------------------------------------------------------------------- /Resources.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/Resources.pm -------------------------------------------------------------------------------- /ack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/ack -------------------------------------------------------------------------------- /dev/20110906-agenda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/20110906-agenda.md -------------------------------------------------------------------------------- /dev/IGNORE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/IGNORE.md -------------------------------------------------------------------------------- /dev/UNICODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/UNICODE.md -------------------------------------------------------------------------------- /dev/chats/2011-08-21-design-ackathon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/chats/2011-08-21-design-ackathon.md -------------------------------------------------------------------------------- /dev/chats/2011-09-01-config-finder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/chats/2011-09-01-config-finder.md -------------------------------------------------------------------------------- /dev/config-test-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/config-test-cases.md -------------------------------------------------------------------------------- /dev/display-option-coverage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/display-option-coverage.pl -------------------------------------------------------------------------------- /dev/find-minimum-dep-versions.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/find-minimum-dep-versions.pl -------------------------------------------------------------------------------- /dev/generate-completion-scripts.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/generate-completion-scripts.pl -------------------------------------------------------------------------------- /dev/high-level-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/high-level-principles.md -------------------------------------------------------------------------------- /dev/ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/ideas.md -------------------------------------------------------------------------------- /dev/issues-scrub.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/issues-scrub.pl -------------------------------------------------------------------------------- /dev/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/notes.md -------------------------------------------------------------------------------- /dev/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/questions.md -------------------------------------------------------------------------------- /dev/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/roadmap.md -------------------------------------------------------------------------------- /dev/timings.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/dev/timings.pl -------------------------------------------------------------------------------- /garage/ack-1.96: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-1.96 -------------------------------------------------------------------------------- /garage/ack-2.02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.02 -------------------------------------------------------------------------------- /garage/ack-2.03_01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.03_01 -------------------------------------------------------------------------------- /garage/ack-2.03_02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.03_02 -------------------------------------------------------------------------------- /garage/ack-2.03_03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.03_03 -------------------------------------------------------------------------------- /garage/ack-2.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.04 -------------------------------------------------------------------------------- /garage/ack-2.05_01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.05_01 -------------------------------------------------------------------------------- /garage/ack-2.08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.08 -------------------------------------------------------------------------------- /garage/ack-2.09_01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.09_01 -------------------------------------------------------------------------------- /garage/ack-2.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.10 -------------------------------------------------------------------------------- /garage/ack-2.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.12 -------------------------------------------------------------------------------- /garage/ack-2.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.14 -------------------------------------------------------------------------------- /garage/ack-2.16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.16 -------------------------------------------------------------------------------- /garage/ack-2.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.18 -------------------------------------------------------------------------------- /garage/ack-2.20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.20 -------------------------------------------------------------------------------- /garage/ack-2.22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.22 -------------------------------------------------------------------------------- /garage/ack-2.24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.24 -------------------------------------------------------------------------------- /garage/ack-2.26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.26 -------------------------------------------------------------------------------- /garage/ack-2.28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/garage/ack-2.28 -------------------------------------------------------------------------------- /perlcriticrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/perlcriticrc -------------------------------------------------------------------------------- /perltidyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/perltidyrc -------------------------------------------------------------------------------- /record-options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/record-options -------------------------------------------------------------------------------- /squash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/squash -------------------------------------------------------------------------------- /t/00-load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/00-load.t -------------------------------------------------------------------------------- /t/FilterTest.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/FilterTest.pm -------------------------------------------------------------------------------- /t/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/Util.pm -------------------------------------------------------------------------------- /t/ack-1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-1.t -------------------------------------------------------------------------------- /t/ack-c.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-c.t -------------------------------------------------------------------------------- /t/ack-color.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-color.t -------------------------------------------------------------------------------- /t/ack-column.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-column.t -------------------------------------------------------------------------------- /t/ack-create-ackrc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-create-ackrc.t -------------------------------------------------------------------------------- /t/ack-dump.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-dump.t -------------------------------------------------------------------------------- /t/ack-f.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-f.t -------------------------------------------------------------------------------- /t/ack-files-from.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-files-from.t -------------------------------------------------------------------------------- /t/ack-filetypes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-filetypes.t -------------------------------------------------------------------------------- /t/ack-g.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-g.t -------------------------------------------------------------------------------- /t/ack-group.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-group.t -------------------------------------------------------------------------------- /t/ack-h.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-h.t -------------------------------------------------------------------------------- /t/ack-help-types.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-help-types.t -------------------------------------------------------------------------------- /t/ack-help.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-help.t -------------------------------------------------------------------------------- /t/ack-i.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-i.t -------------------------------------------------------------------------------- /t/ack-ignore-dir.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-ignore-dir.t -------------------------------------------------------------------------------- /t/ack-ignore-file.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-ignore-file.t -------------------------------------------------------------------------------- /t/ack-interactive.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-interactive.t -------------------------------------------------------------------------------- /t/ack-invalid-ackrc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-invalid-ackrc.t -------------------------------------------------------------------------------- /t/ack-k.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-k.t -------------------------------------------------------------------------------- /t/ack-known-types.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-known-types.t -------------------------------------------------------------------------------- /t/ack-line.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-line.t -------------------------------------------------------------------------------- /t/ack-m.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-m.t -------------------------------------------------------------------------------- /t/ack-match.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-match.t -------------------------------------------------------------------------------- /t/ack-n.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-n.t -------------------------------------------------------------------------------- /t/ack-named-pipes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-named-pipes.t -------------------------------------------------------------------------------- /t/ack-o.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-o.t -------------------------------------------------------------------------------- /t/ack-output.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-output.t -------------------------------------------------------------------------------- /t/ack-pager.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-pager.t -------------------------------------------------------------------------------- /t/ack-passthru.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-passthru.t -------------------------------------------------------------------------------- /t/ack-print0.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-print0.t -------------------------------------------------------------------------------- /t/ack-removed-options.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-removed-options.t -------------------------------------------------------------------------------- /t/ack-s.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-s.t -------------------------------------------------------------------------------- /t/ack-show-types.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-show-types.t -------------------------------------------------------------------------------- /t/ack-type-del.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-type-del.t -------------------------------------------------------------------------------- /t/ack-type.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-type.t -------------------------------------------------------------------------------- /t/ack-v.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-v.t -------------------------------------------------------------------------------- /t/ack-w.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-w.t -------------------------------------------------------------------------------- /t/ack-x.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ack-x.t -------------------------------------------------------------------------------- /t/anchored.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/anchored.t -------------------------------------------------------------------------------- /t/asp-net-ext.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/asp-net-ext.t -------------------------------------------------------------------------------- /t/bad-ackrc-opt.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/bad-ackrc-opt.t -------------------------------------------------------------------------------- /t/basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/basic.t -------------------------------------------------------------------------------- /t/command-line-files.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/command-line-files.t -------------------------------------------------------------------------------- /t/config-backwards-compat.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/config-backwards-compat.t -------------------------------------------------------------------------------- /t/config-finder.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/config-finder.t -------------------------------------------------------------------------------- /t/config-loader.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/config-loader.t -------------------------------------------------------------------------------- /t/context.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/context.t -------------------------------------------------------------------------------- /t/default-filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/default-filter.t -------------------------------------------------------------------------------- /t/etc/buttonhook.xml.xxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/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/ack2/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/ack2/HEAD/t/exit-code.t -------------------------------------------------------------------------------- /t/ext-filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/ext-filter.t -------------------------------------------------------------------------------- /t/file-permission.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/file-permission.t -------------------------------------------------------------------------------- /t/filetypes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/filetypes.t -------------------------------------------------------------------------------- /t/filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/filter.t -------------------------------------------------------------------------------- /t/firstlinematch-filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/firstlinematch-filter.t -------------------------------------------------------------------------------- /t/highlighting.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/highlighting.t -------------------------------------------------------------------------------- /t/home/.ackrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /t/illegal-regex.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/illegal-regex.t -------------------------------------------------------------------------------- /t/incomplete-last-line.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/incomplete-last-line.t -------------------------------------------------------------------------------- /t/inverted-file-filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/inverted-file-filter.t -------------------------------------------------------------------------------- /t/is-filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/is-filter.t -------------------------------------------------------------------------------- /t/issue244.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/issue244.t -------------------------------------------------------------------------------- /t/issue276.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/issue276.t -------------------------------------------------------------------------------- /t/issue491.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/issue491.t -------------------------------------------------------------------------------- /t/issue522.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/issue522.t -------------------------------------------------------------------------------- /t/issue562.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/issue562.t -------------------------------------------------------------------------------- /t/issue571.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/issue571.t -------------------------------------------------------------------------------- /t/lib/00-coverage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/00-coverage.t -------------------------------------------------------------------------------- /t/lib/Ack.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/Ack.t -------------------------------------------------------------------------------- /t/lib/Collection.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/Collection.t -------------------------------------------------------------------------------- /t/lib/ConfigDefault.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/ConfigDefault.t -------------------------------------------------------------------------------- /t/lib/ConfigFinder.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/ConfigFinder.t -------------------------------------------------------------------------------- /t/lib/ConfigLoader.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/ConfigLoader.t -------------------------------------------------------------------------------- /t/lib/Default.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/Default.t -------------------------------------------------------------------------------- /t/lib/Extension.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/Extension.t -------------------------------------------------------------------------------- /t/lib/ExtensionGroup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/ExtensionGroup.t -------------------------------------------------------------------------------- /t/lib/Filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/Filter.t -------------------------------------------------------------------------------- /t/lib/FirstLineMatch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/FirstLineMatch.t -------------------------------------------------------------------------------- /t/lib/Inverse.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/Inverse.t -------------------------------------------------------------------------------- /t/lib/Is.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/Is.t -------------------------------------------------------------------------------- /t/lib/IsGroup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/IsGroup.t -------------------------------------------------------------------------------- /t/lib/IsPath.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/IsPath.t -------------------------------------------------------------------------------- /t/lib/IsPathGroup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/IsPathGroup.t -------------------------------------------------------------------------------- /t/lib/Match.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/Match.t -------------------------------------------------------------------------------- /t/lib/MatchGroup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/MatchGroup.t -------------------------------------------------------------------------------- /t/lib/Resource.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/Resource.t -------------------------------------------------------------------------------- /t/lib/Resources.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lib/Resources.t -------------------------------------------------------------------------------- /t/longopts.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/longopts.t -------------------------------------------------------------------------------- /t/lua-shebang.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/lua-shebang.t -------------------------------------------------------------------------------- /t/match-filter.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/match-filter.t -------------------------------------------------------------------------------- /t/mutex-options.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/mutex-options.t -------------------------------------------------------------------------------- /t/needs-line-scan.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/needs-line-scan.t -------------------------------------------------------------------------------- /t/noackrc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/noackrc.t -------------------------------------------------------------------------------- /t/noenv.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/noenv.t -------------------------------------------------------------------------------- /t/process-substitution.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/process-substitution.t -------------------------------------------------------------------------------- /t/r-lang-ext.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/r-lang-ext.t -------------------------------------------------------------------------------- /t/resource-iterator.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/resource-iterator.t -------------------------------------------------------------------------------- /t/runtests.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/runtests.pl -------------------------------------------------------------------------------- /t/swamp/#emacs-workfile.pl#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/#emacs-workfile.pl# -------------------------------------------------------------------------------- /t/swamp/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/0 -------------------------------------------------------------------------------- /t/swamp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Not actually a cmake file! 2 | -------------------------------------------------------------------------------- /t/swamp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/Makefile -------------------------------------------------------------------------------- /t/swamp/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/Makefile.PL -------------------------------------------------------------------------------- /t/swamp/MasterPage.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/MasterPage.master -------------------------------------------------------------------------------- /t/swamp/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/Rakefile -------------------------------------------------------------------------------- /t/swamp/Sample.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/Sample.ascx -------------------------------------------------------------------------------- /t/swamp/Sample.asmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/Sample.asmx -------------------------------------------------------------------------------- /t/swamp/blib/ignore.pir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/blib/ignore.pir -------------------------------------------------------------------------------- /t/swamp/blib/ignore.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/blib/ignore.pm -------------------------------------------------------------------------------- /t/swamp/blib/ignore.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/blib/ignore.pod -------------------------------------------------------------------------------- /t/swamp/c-header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/c-header.h -------------------------------------------------------------------------------- /t/swamp/c-source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/c-source.c -------------------------------------------------------------------------------- /t/swamp/constitution-100k.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/constitution-100k.pl -------------------------------------------------------------------------------- /t/swamp/crystallography-weenies.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/crystallography-weenies.f -------------------------------------------------------------------------------- /t/swamp/example.R: -------------------------------------------------------------------------------- 1 | print('hi') 2 | -------------------------------------------------------------------------------- /t/swamp/file.bar: -------------------------------------------------------------------------------- 1 | This is a bar file. 2 | -------------------------------------------------------------------------------- /t/swamp/file.foo: -------------------------------------------------------------------------------- 1 | This is a foo file. 2 | -------------------------------------------------------------------------------- /t/swamp/fresh.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/fresh.css -------------------------------------------------------------------------------- /t/swamp/fresh.css.min: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/fresh.css.min -------------------------------------------------------------------------------- /t/swamp/fresh.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/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/ack2/HEAD/t/swamp/html.htm -------------------------------------------------------------------------------- /t/swamp/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/html.html -------------------------------------------------------------------------------- /t/swamp/incomplete-last-line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/incomplete-last-line.txt -------------------------------------------------------------------------------- /t/swamp/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/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/ack2/HEAD/t/swamp/moose-andy.jpg -------------------------------------------------------------------------------- /t/swamp/not-an-#emacs-workfile#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/not-an-#emacs-workfile# -------------------------------------------------------------------------------- /t/swamp/notaMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/notaMakefile -------------------------------------------------------------------------------- /t/swamp/notaRakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/notaRakefile -------------------------------------------------------------------------------- /t/swamp/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/notes.md -------------------------------------------------------------------------------- /t/swamp/options-crlf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/options-crlf.pl -------------------------------------------------------------------------------- /t/swamp/options.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/options.pl -------------------------------------------------------------------------------- /t/swamp/options.pl.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/options.pl.bak -------------------------------------------------------------------------------- /t/swamp/parrot.pir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/parrot.pir -------------------------------------------------------------------------------- /t/swamp/perl-test.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/perl-test.t -------------------------------------------------------------------------------- /t/swamp/perl-without-extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/perl-without-extension -------------------------------------------------------------------------------- /t/swamp/perl.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/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/ack2/HEAD/t/swamp/perl.pl -------------------------------------------------------------------------------- /t/swamp/perl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/perl.pm -------------------------------------------------------------------------------- /t/swamp/perl.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/perl.pod -------------------------------------------------------------------------------- /t/swamp/perl.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/perl.tar.gz -------------------------------------------------------------------------------- /t/swamp/perltoot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/perltoot.jpg -------------------------------------------------------------------------------- /t/swamp/pipe-stress-freaks.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/pipe-stress-freaks.F -------------------------------------------------------------------------------- /t/swamp/sample.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/sample.asp -------------------------------------------------------------------------------- /t/swamp/sample.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/sample.aspx -------------------------------------------------------------------------------- /t/swamp/sample.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/sample.rake -------------------------------------------------------------------------------- /t/swamp/service.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/swamp/service.svc -------------------------------------------------------------------------------- /t/swamp/solution8.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/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/text/amontillado.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/text/amontillado.txt -------------------------------------------------------------------------------- /t/text/bill-of-rights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/text/bill-of-rights.txt -------------------------------------------------------------------------------- /t/text/constitution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/text/constitution.txt -------------------------------------------------------------------------------- /t/text/gettysburg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/text/gettysburg.txt -------------------------------------------------------------------------------- /t/text/number.txt: -------------------------------------------------------------------------------- 1 | 86700 2 | -------------------------------------------------------------------------------- /t/text/numbered-text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/text/numbered-text.txt -------------------------------------------------------------------------------- /t/text/ozymandias.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/text/ozymandias.txt -------------------------------------------------------------------------------- /t/text/raven.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/text/raven.txt -------------------------------------------------------------------------------- /t/zero.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/t/zero.t -------------------------------------------------------------------------------- /tack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/tack -------------------------------------------------------------------------------- /test-pager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/test-pager -------------------------------------------------------------------------------- /xt/coding-standards.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/xt/coding-standards.t -------------------------------------------------------------------------------- /xt/man.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/xt/man.t -------------------------------------------------------------------------------- /xt/perlcritic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/xt/perlcritic.t -------------------------------------------------------------------------------- /xt/pod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/xt/pod.t -------------------------------------------------------------------------------- /xt/whitespace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyondgrep/ack2/HEAD/xt/whitespace.t --------------------------------------------------------------------------------