Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the ack CPAN distribution.

Maintainer(s)' notes

ack's issues are tracked at https://github.com/petdance/ack2

Report information
The Basics
Id: 29840
Status: resolved
Priority: 0/
Queue: ack

People
Owner: Nobody in particular
Requestors: nigel.metheringham [...] Dev.intechnology.co.uk
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 1.66
Fixed in: (no value)



Subject: Unimplemented but documented command line switches
The documented command line switches:- -H, --with-filename Print the filename for each match -h, --no-filename Suppress the prefixing filename on output were not implemented in their long form. Untested patch attached.
Subject: ack.patch
--- Ack.pm.orig 2007-10-08 14:52:02.000000000 +0100 +++ Ack.pm 2007-10-08 14:55:59.000000000 +0100 @@ -121,8 +121,8 @@ 'g=s' => \$opt{g}, 'follow!' => \$opt{follow}, 'group!' => \$opt{group}, - h => \$opt{h}, - H => \$opt{H}, + 'h|no-filename' => \$opt{h}, + 'H|with-filename' => \$opt{H}, 'i|ignore-case' => \$opt{i}, 'l|files-with-matches' => \$opt{l}, 'L|files-without-match' => \$opt{L},
Fixed, thank you.