#!/usr/local/bin/perl use warnings; use strict; our $VERSION = '1.66'; # Check http://petdance.com/ack/ for updates # These are all our globals. use File::Next 0.40; use App::Ack (); App::Ack::load_colors(); MAIN: { if ( $App::Ack::VERSION ne $main::VERSION ) { App::Ack::die( "Program/library version mismatch\n\t$0 is $main::VERSION\n\t$INC{'App/Ack.pm'} is $App::Ack::VERSION" ); } if ( exists $ENV{ACK_SWITCHES} ) { App::Ack::warn( 'ACK_SWITCHES is no longer supported. Use ACK_OPTIONS.' ); } main(); } sub main { # Priorities! Get the --thpppt checking out of the way. /^--th[bp]+t$/ && App::Ack::_thpppt($_) for @ARGV; my %opt = App::Ack::get_command_line_options(); my $filetypes_supported_set = App::Ack::filetypes_supported_set(); my $filetypes_supported_unset = App::Ack::filetypes_supported_unset(); # If anyone says --no-whatever, we assume all other types must be on. if ( !$filetypes_supported_set ) { for my $i ( keys %App::Ack::type_wanted ) { $App::Ack::type_wanted{$i} = 1 unless ( defined( $App::Ack::type_wanted{$i} ) || $i eq 'binary' || $i eq 'text' || $i eq 'skipped' ); } } my $regex; my $file_matching = $opt{f} || $opt{g}; if ( !$file_matching ) { if ( !@ARGV ) { App::Ack::show_help(); exit 1; } # REVIEW: This shouldn't be able to happen because of the help # check above. $regex = shift @ARGV or App::Ack::die( 'No regex specified' ); $regex = quotemeta( $regex ) if $opt{Q}; if ( $opt{w} ) { $regex = "\\b$regex" if $regex =~ /^\w/; $regex = "$regex\\b" if $regex =~ /\w$/; } $regex = $opt{i} ? qr/$regex/i : qr/$regex/; } my @what; if ( @ARGV ) { @what = $App::Ack::is_windows ? <@ARGV> : @ARGV; # Show filenames unless we've specified one single file $opt{show_filename} = (@what > 1) || (!-f $what[0]); } else { if ( $opt{is_filter} ) { # We're going into filter mode for ( qw( f g l ) ) { $opt{$_} and App::Ack::die( "Can't use -$_ when acting as a filter." ); } $opt{show_filename} = 0; App::Ack::search( '-', $regex, %opt ); exit 0; } else { @what = '.'; # Assume current directory $opt{show_filename} = 1; } } my $file_filter = $opt{all} ? \&App::Ack::dash_a_file_filter : \&App::Ack::is_interesting; my $descend_filter = $opt{n} ? sub {0} : \&App::Ack::skipdir_filter; my $iter = File::Next::files( { file_filter => $file_filter, descend_filter => $descend_filter, error_handler => sub { my $msg = shift; App::Ack::warn( $msg ) }, sort_files => $opt{sort_files}, follow_symlinks => $opt{follow}, }, @what ); if ( $opt{f} ) { App::Ack::print_files($iter, $opt{1}); } elsif ( $opt{g} ) { my $regex = $opt{i} ? qr/$opt{g}/i : qr/$opt{g}/; App::Ack::print_selected_files($iter, $regex, $opt{1}); } else { $opt{show_filename} = 0 if $opt{h}; $opt{show_filename} = 1 if $opt{H}; $opt{show_filename} = 0 if $opt{output}; my $nmatches = 0; while ( defined ( my $file = $iter->() ) ) { $nmatches += App::Ack::search( $file, $regex, %opt ); last if $nmatches && $opt{1}; } } exit 0; } =encoding utf8 =head1 NAME ack - grep-like text finder =head1 SYNOPSIS ack [options] PATTERN [FILE...] ack -f [options] [DIRECTORY...] =head1 DESCRIPTION Ack is designed as a replacement for 99% of the uses of F. Ack searches the named input FILEs (or standard input if no files are named, or the file name - is given) for lines containing a match to the given PATTERN. By default, ack prints the matching lines. Ack can also list files that would be searched, without actually searching them, to let you take advantage of ack's file-type filtering capabilities. =head1 FILE SELECTION I is intelligent about the files it searches. It knows about certain file types, based on both the extension on the file and, in some cases, the contents of the file. These selections can be made with the B<--type> option. With no file selections, I only searches files of types that it recognizes. If you have a file called F, and I doesn't know what a .wango file is, I won't search it. The B<-a> option tells I to select all files, regardless of type. Some files will never be selected by I, even with B<-a>, including: =over 4 =item * Backup files: Files ending with F<~>, or F<#*#> =item * Coredumps: Files matching F =back =head1 DIRECTORY SELECTION I descends through the directory tree of the starting directories specified. However, it will ignore the shadow directories used by many version control systems, and the build directories used by the Perl MakeMaker system. The following directories will never be descended into: F<_darcs>, F, F, F, F<.svn>, F, F<.git> =head1 WHEN TO USE GREP I trumps I as an everyday tool 99% of the time, but don't throw I away, because there are times you'll still need it. I only searches through files of types that it recognizes. If it can't tell what type a file is, then it won't look. If that's annoying to you, use I. If you truly want to search every file and every directory, I won't do it. You'll need to rely on I. If you need context around your matches, use I, but check back in on I in the near future, because I'm adding it. =head1 OPTIONS =over 4 =item B<-a>, B<--all> Operate on all files, regardless of type (but still skip directories like F, F, etc.) =item B<-c>, B<--count> Suppress normal output; instead print a count of matching lines for each input file. If B<-l> is in effect, it will only show the number of lines for each file that has lines matching. Without B<-l>, some line counts may be zeroes. =item B<--color>, B<--nocolor> B<--color> highlights the matching text. B<--nocolor> supresses the color. This is on by default unless the output is redirected, or running under Windows. =item B<-f> Only print the files that would be searched, without actually doing any searching. PATTERN must not be specified, or it will be taken as a path to search. =item B<--follow>, B<--nofollow> Follow or don't follow symlinks, other than whatever starting files or directories were specified on the command line. This is off by default. =item B<-g=I> Same as B<-f>, but only print files that match I. The entire path and filename are matched against I, and I is a Perl regular expression, not a shell glob. =item B<--group>, B<--nogroup> B<--group> groups matches by file name with. This is the default when used interactively. B<--nogroup> prints one result per line, like grep. This is the default when output is redirected. =item B<-H>, B<--with-filename> Print the filename for each match. =item B<-h>, B<--no-filename> Suppress the prefixing of filenames on output when multiple files are searched. =item B<--help> Print a short help statement. =item B<-i>, B<--ignore-case> Ignore case in the search strings. =item B<-l>, B<--files-with-matches> Only print the filenames of matching files, instead of the matching text. =item B<-m=I>, B<--max-count=I> Stop reading a file after I matches. =item B<--man> Print this manual page. =item B<-n> No descending into subdirectories. =item B<-o> Show only the part of each line matching PATTERN (turns off text highlighting) =item B<--output=I> Output the evaluation of I for each line (turns off text highlighting) =item B<--passthru> Prints all lines, whether or not they match the expression. Highlighting will still work, though, so it can be used to highlight matches while still seeing the entire file, as in: # Watch a log file, and highlight a certain IP address $ tail -f ~/access.log | ack --passthru 123.45.67.89 =item B<-Q>, B<--literal> Quote all metacharacters. PATTERN is treated as a literal. =item B<--sort-files> Sorts the found files lexically. Use this if you want your file listings to be deterministic between runs of I. =item B<--thpppt> Display the all-important Bill The Cat logo. Note that the exact spelling of B<--thpppppt> is not important. It's checked against a regular expression. =item B<--type=TYPE>, B<--type=noTYPE> Specify the types of files to include or exclude from a search. TYPE is a filetype, like I or I. B<--type=perl> can also be specified as B<--perl>, and B<--type=noperl> can be done as B<--noperl>. If a file is of both type "foo" and "bar", specifying --foo and --nobar will exclude the file, because an exclusion takes precedence over an inclusion. Type specifications can be repeated and are ORed together. See I for a list of valid types. =item B<-v>, B<--invert-match> Invert match: select non-matching lines =item B<--version> Display version and copyright information. =item B<-w>, B<--word-regexp> Force PATTERN to match only whole words. The PATTERN is wrapped with C<\b> metacharacters. =back =head1 ENVIRONMENT VARIABLES =over 4 =item ACK_OPTIONS This variable specifies default options to be placed in front of any explicit options on the command line. =item ACK_COLOR_FILENAME Specifies the color of the filename when it's printed in B<--group> mode. By default, it's "bold green". The recognized attributes are clear, reset, dark, bold, underline, underscore, blink, reverse, concealed black, red, green, yellow, blue, magenta, on_black, on_red, on_green, on_yellow, on_blue, on_magenta, on_cyan, and on_white. Case is not significant. Underline and underscore are equivalent, as are clear and reset. The color alone sets the foreground color, and on_color sets the background color. =item ACK_COLOR_MATCH Specifies the color of the matching text when printed in B<--color> mode. By default, it's "black on_yellow". See B for the color specifications. =back =head1 ACK & OTHER TOOLS =head2 Vim integration F integrates easily with the Vim text editor. Set this in your F<.vimrc> to use F instead of F: set grepprg=ack\ -a That examples uses C<-a> to search through all files, but you may use other default flags. Now you can search with F and easily step through the results in Vim: :grep Dumper perllib =cut =head1 GOTCHAS Note that FILES must still match valid selection rules. For example, ack something --perl foo.rb will search nothing, because I is a Ruby file. =head1 AUTHOR Andy Lester, C<< >> =head1 BUGS Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 SUPPORT Support for and information about F can be found at: =over 4 =item * The ack homepage L =item * AnnoCPAN: Annotated CPAN documentation L =item * CPAN Ratings L =item * RT: CPAN's request tracker L =item * Search CPAN L =item * Subversion repository L =back =head1 ACKNOWLEDGEMENTS How appropriate to have Inowledgements! Thanks to everyone who has contributed to ack in any way, including Gabor Szabo, Tod Hagan, Michael Hendricks, Ævar Arnfjörð Bjarmason, Piers Cawley, Stephen Steneker, Elias Lutfallah, Mark Leighton Fisher, Matt Diephouse, Christian Jaeger, Bill Sully, Bill Ricker, David Golden, Nilson Santos F. Jr, Elliot Shank, Merijn Broeren, Uwe Voelker, Rick Scott, Ask Bjørn Hansen, Jerry Gay, Will Coleda, Mike O'Regan, Slaven Rezić, Mark Stosberg, David Alan Pisoni, Adriano Ferreira, James Keenan, Leland Johnson, Ricardo Signes and Pete Krawczyk. =head1 COPYRIGHT & LICENSE Copyright 2005-2007 Andy Lester, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut