__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.219: ~ $
#!/usr/bin/perl

use strict;
use warnings;

our $VERSION = 'v3.8.1'; # Check https://beyondgrep.com/ for updates

use 5.010001;

use File::Spec ();
use File::Next ();
use Getopt::Long ();

use App::Ack ();
use App::Ack::ConfigLoader ();
use App::Ack::File ();
use App::Ack::Files ();

use App::Ack::Filter ();
use App::Ack::Filter::Default ();
use App::Ack::Filter::Extension ();
use App::Ack::Filter::FirstLineMatch ();
use App::Ack::Filter::Inverse ();
use App::Ack::Filter::Is ();
use App::Ack::Filter::IsPath ();
use App::Ack::Filter::Match ();
use App::Ack::Filter::Collection ();

# Global command-line options
our $opt_1;
our $opt_A;
our $opt_B;
our $opt_break;
our $opt_color;
our $opt_column;
our $opt_debug;
our $opt_c;
our $opt_f;
our $opt_g;
our $opt_heading;
our $opt_L;
our $opt_l;
our $opt_m;
our $opt_output;
our $opt_passthru;
our $opt_p;
our $opt_range_start;
our $opt_range_end;
our $opt_regex;
our $opt_show_filename;
our $opt_show_types;
our $opt_underline;
our $opt_v;

# Flag if we need any context tracking.
our $is_tracking_context;

# The regex that we use to match each line in the file.
our $re_match;

# Regex for matching for highlighting in matched lines.
our $re_hilite;

# The regex that matches for things we want to exclude via the --not option.
our $re_not;

# Version of the match regex for checking to see if the file should be scanned line-by-line.
our $re_scan;

our @special_vars_used_by_opt_output;

our $using_ranges;

# Internal stats for debugging.
our %stats;

MAIN: {
    $App::Ack::ORIGINAL_PROGRAM_NAME = $0;
    $0 = join(' ', 'ack', $0);
    $App::Ack::ors = "\n";
    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" );
    }

    # Do preliminary arg checking;
    my $env_is_usable = 1;
    for my $arg ( @ARGV ) {
        last if ( $arg eq '--' );

        # Get the --thpppt, --bar, --cathy and --man checking out of the way.
        $arg =~ /^--th[pt]+t+$/ and App::Ack::thpppt($arg);
        $arg eq '--bar'         and App::Ack::ackbar();
        $arg eq '--cathy'       and App::Ack::cathy();

        # See if we want to ignore the environment. (Don't tell Al Gore.)
        $arg eq '--env'         and $env_is_usable = 1;
        $arg eq '--noenv'       and $env_is_usable = 0;
    }

    if ( $env_is_usable ) {
        if ( $ENV{ACK_OPTIONS} ) {
            App::Ack::warn( 'WARNING: ack no longer uses the ACK_OPTIONS environment variable.  Use an ackrc file instead.' );
        }
    }
    else {
        my @keys = ( 'ACKRC', grep { /^ACK_/ } keys %ENV );
        delete @ENV{@keys};
    }

    # Load colors
    my $modules_loaded_ok = eval 'use Term::ANSIColor 1.10 (); 1;';
    if ( $modules_loaded_ok && $App::Ack::is_windows ) {
        $modules_loaded_ok = eval 'use Win32::Console::ANSI; 1;';
    }
    if ( $modules_loaded_ok ) {
        $ENV{ACK_COLOR_MATCH}    ||= 'black on_yellow';
        $ENV{ACK_COLOR_FILENAME} ||= 'bold green';
        $ENV{ACK_COLOR_LINENO}   ||= 'bold yellow';
        $ENV{ACK_COLOR_COLNO}    ||= 'bold yellow';
    }

    App::Ack::ConfigLoader::configure_parser( 'no_auto_abbrev', 'pass_through' );
    Getopt::Long::GetOptions(
        help     => sub { App::Ack::show_help(); exit; },
        version  => sub { App::Ack::print( App::Ack::get_version_statement() ); exit; },
        man      => sub { App::Ack::show_man(); },
    );

    if ( !@ARGV ) {
        App::Ack::show_help();
        exit 1;
    }

    my @arg_sources = App::Ack::ConfigLoader::retrieve_arg_sources();

    my $opt = App::Ack::ConfigLoader::process_args( @arg_sources );

    $opt_1              = $opt->{1};
    $opt_A              = $opt->{A};
    $opt_B              = $opt->{B};
    $opt_break          = $opt->{break};
    $opt_c              = $opt->{c};
    $opt_color          = $opt->{color};
    $opt_column         = $opt->{column};
    $opt_debug          = $opt->{debug};
    $opt_f              = $opt->{f};
    $opt_g              = $opt->{g};
    $opt_heading        = $opt->{heading};
    $opt_L              = $opt->{L};
    $opt_l              = $opt->{l};
    $opt_m              = $opt->{m};
    $opt_output         = $opt->{output};
    $opt_p              = $opt->{p};
    $opt_passthru       = $opt->{passthru};
    $opt_range_start    = $opt->{range_start};
    $opt_range_end      = $opt->{range_end};
    $opt_regex          = $opt->{regex};
    $opt_show_filename  = $opt->{show_filename};
    $opt_show_types     = $opt->{show_types};
    $opt_underline      = $opt->{underline};
    $opt_v              = $opt->{v};

    if ( $opt_show_types && not( $opt_f || $opt_g ) ) {
        App::Ack::die( '--show-types can only be used with -f or -g.' );
    }

    if ( $opt_range_start ) {
        ($opt_range_start, undef) = App::Ack::build_regex( $opt_range_start, {} );
    }
    if ( $opt_range_end ) {
        ($opt_range_end, undef)   = App::Ack::build_regex( $opt_range_end, {} );
    }
    $using_ranges = $opt_range_start || $opt_range_end;

    $App::Ack::report_bad_filenames = !$opt->{s};
    $App::Ack::ors = $opt->{print0} ? "\0" : "\n";

    if ( !defined($opt_color) && !$opt_g ) {
        my $windows_color = 1;
        if ( $App::Ack::is_windows ) {
            $windows_color = eval { require Win32::Console::ANSI; };
        }
        $opt_color = !App::Ack::output_to_pipe() && $windows_color;
    }
    $opt_heading //= !App::Ack::output_to_pipe();
    $opt_break //= !App::Ack::output_to_pipe();

    if ( defined($opt->{H}) || defined($opt->{h}) ) {
        $opt_show_filename = $opt->{show_filename} = $opt->{H} && !$opt->{h};
    }

    if ( defined $opt_output ) {
        # Expand out \t, \n and \r.
        $opt_output =~ s/\\n/\n/g;
        $opt_output =~ s/\\r/\r/g;
        $opt_output =~ s/\\t/\t/g;

        my @supported_special_variables = ( 1..9, qw( _ . ` & ' +  f ) );
        @special_vars_used_by_opt_output = grep { $opt_output =~ /\$$_/ } @supported_special_variables;

        # If the $opt_output contains $&, $` or $', those vars won't be
        # captured until they're used at least once in the program.
        # Do the eval to make this happen.
        for my $i ( @special_vars_used_by_opt_output ) {
            if ( $i eq q{&} || $i eq q{'} || $i eq q{`} ) {
                no warnings;    # They will be undef, so don't warn.
                eval qq{"\$$i"};    ## no critic ( ErrorHandling::RequireCheckingReturnValueOfEval )
            }
        }
    }


    # Set up file filters.
    my $files;
    if ( $App::Ack::is_filter_mode && !$opt->{files_from} ) { # probably -x
        $files     = App::Ack::Files->from_stdin();
        $opt_regex //= shift @ARGV;
        defined $opt_regex or App::Ack::die( 'No regular expression found.' );
        ($re_match, $re_not, $re_hilite, $re_scan) = App::Ack::build_all_regexes( $opt_regex, $opt );
        $stats{re_match}  = $re_match;
        $stats{re_not}    = $re_not;
        $stats{re_hilite} = $re_hilite;
        $stats{re_scan}   = $re_scan;
    }
    else {
        if ( $opt_f ) {
            # No need to check for regex, since mutex options are handled elsewhere.
        }
        else {
            $opt_regex //= shift @ARGV;
            defined $opt_regex or App::Ack::die( 'No regular expression found.' );
            ($re_match, $re_not, $re_hilite, $re_scan) = App::Ack::build_all_regexes( $opt_regex, $opt );
            $stats{re_match}  = $re_match;
            $stats{re_not}    = $re_not;
            $stats{re_hilite} = $re_hilite;
            $stats{re_scan}   = $re_scan;
        }
        my @start;
        if ( not defined $opt->{files_from} ) {
            @start = @ARGV;
        }
        if ( !exists($opt->{show_filename}) ) {
            unless(@start == 1 && !(-d $start[0])) {
                $opt_show_filename = $opt->{show_filename} = 1;
            }
        }

        if ( defined $opt->{files_from} ) {
            $files = App::Ack::Files->from_file( $opt, $opt->{files_from} );
            exit 1 unless $files;
        }
        else {
            @start = ('.') unless @start;
            foreach my $target (@start) {
                if ( !-e $target && $App::Ack::report_bad_filenames) {
                    App::Ack::warn( "$target: No such file or directory" );
                }
            }

            $opt->{file_filter}    = _compile_file_filter($opt, \@start);
            $opt->{descend_filter} = _compile_descend_filter($opt);

            $files = App::Ack::Files->from_argv( $opt, \@start );
        }
    }
    App::Ack::set_up_pager( $opt->{pager} ) if defined $opt->{pager};

    my $nmatches;
    if ( $opt_f || $opt_g ) {
        $nmatches = file_loop_fg( $files );
    }
    elsif ( $opt_c ) {
        $nmatches = file_loop_c( $files );
    }
    elsif ( $opt_l || $opt_L ) {
        $nmatches = file_loop_lL( $files );
    }
    else {
        $nmatches = file_loop_normal( $files );
    }

    if ( $opt_debug ) {
        require List::Util;
        my @stats = qw( re_match re_scan re_not prescans linescans filematches linematches );
        my $width = List::Util::max( map { length } @stats );

        for my $stat ( @stats ) {
            App::Ack::warn( sprintf( '%-*.*s = %s', $width, $width, $stat, $stats{$stat} // 'undef' ) );
        }
    }

    close $App::Ack::fh;

    App::Ack::exit_from_ack( $nmatches );
} # End of MAIN


exit 0;


sub file_loop_fg {
    my $files = shift;

    my $nmatches = 0;
    while ( defined( my $file = $files->next ) ) {
        if ( $opt_show_types ) {
            App::Ack::show_types( $file );
        }
        elsif ( $opt_g ) {
            print_line_with_options( undef, $file->name, 0, $App::Ack::ors );
        }
        else {
            App::Ack::say( $file->name );
        }
        ++$nmatches;
        last if defined($opt_m) && ($nmatches >= $opt_m);
    }

    return $nmatches;
}


sub file_loop_c {
    my $files = shift;

    my $total_count = 0;
    while ( defined( my $file = $files->next ) ) {
        my $matches_for_this_file = count_matches_in_file( $file );

        if ( not $opt_show_filename ) {
            $total_count += $matches_for_this_file;
            next;
        }

        if ( !$opt_l || $matches_for_this_file > 0 ) {
            if ( $opt_show_filename ) {
                my $display_filename = $file->name;
                if ( $opt_color ) {
                    $display_filename = Term::ANSIColor::colored($display_filename, $ENV{ACK_COLOR_FILENAME});
                }
                App::Ack::say( $display_filename, ':', $matches_for_this_file );
            }
            else {
                App::Ack::say( $matches_for_this_file );
            }
        }
    }

    if ( !$opt_show_filename ) {
        App::Ack::say( $total_count );
    }

    return;
}


sub file_loop_lL {
    my $files = shift;

    my $nmatches = 0;
    while ( defined( my $file = $files->next ) ) {
        my $is_match = count_matches_in_file( $file, 1 );

        if ( $opt_L ? !$is_match : $is_match ) {
            App::Ack::say( $file->name );
            ++$nmatches;

            last if $opt_1;
            last if defined($opt_m) && ($nmatches >= $opt_m);
        }
    }

    return $nmatches;
}


sub _compile_descend_filter {
    my ( $opt ) = @_;

    my $idirs = 0;
    my $dont_ignore_dirs = 0;

    for my $filter (@{$opt->{idirs} || []}) {
        if ($filter->is_inverted()) {
            $dont_ignore_dirs++;
        }
        else {
            $idirs++;
        }
    }

    # If we have one or more --noignore-dir directives, we can't ignore
    # entire subdirectory hierarchies, so we return an "accept all"
    # filter and scrutinize the files more in _compile_file_filter.
    return if $dont_ignore_dirs;
    return unless $idirs;

    $idirs = $opt->{idirs};

    return sub {
        my $file = App::Ack::File->new($File::Next::dir);
        return !grep { $_->filter($file) } @{$idirs};
    };
}


sub _compile_file_filter {
    my ( $opt, $start ) = @_;

    my $ifiles_filters = $opt->{ifiles};

    my $filters         = $opt->{'filters'} || [];
    my $direct_filters = App::Ack::Filter::Collection->new();
    my $inverse_filters = App::Ack::Filter::Collection->new();

    foreach my $filter (@{$filters}) {
        if ($filter->is_inverted()) {
            # We want to check if files match the uninverted filters
            $inverse_filters->add($filter->invert());
        }
        else {
            $direct_filters->add($filter);
        }
    }

    my %is_member_of_starting_set = map { (get_file_id($_) => 1) } @{$start};

    my @ignore_dir_filter = @{$opt->{idirs} || []};
    my @is_inverted       = map { $_->is_inverted() } @ignore_dir_filter;
    # This depends on InverseFilter->invert returning the original filter (for optimization).
    @ignore_dir_filter         = map { $_->is_inverted() ? $_->invert() : $_ } @ignore_dir_filter;
    my $dont_ignore_dir_filter = grep { $_ } @is_inverted;
    my $previous_dir = '';
    my $previous_dir_ignore_result;

    return sub {
        if ( $opt_g ) {
            if ( $File::Next::name =~ /$re_match/o ) {
                return 0 if $opt_v;
            }
            else {
                return 0 if !$opt_v;
            }
        }
        # ack always selects files that are specified on the command
        # line, regardless of filetype.  If you want to ack a JPEG,
        # and say "ack foo whatever.jpg" it will do it for you.
        return 1 if $is_member_of_starting_set{ get_file_id($File::Next::name) };

        if ( $dont_ignore_dir_filter ) {
            if ( $previous_dir eq $File::Next::dir ) {
                if ( $previous_dir_ignore_result ) {
                    return 0;
                }
            }
            else {
                my @dirs = File::Spec->splitdir($File::Next::dir);

                my $is_ignoring;

                for ( my $i = 0; $i < @dirs; $i++) {
                    my $dir_rsrc = App::Ack::File->new(File::Spec->catfile(@dirs[0 .. $i]));

                    my $j = 0;
                    for my $filter (@ignore_dir_filter) {
                        if ( $filter->filter($dir_rsrc) ) {
                            $is_ignoring = !$is_inverted[$j];
                        }
                        $j++;
                    }
                }

                $previous_dir               = $File::Next::dir;
                $previous_dir_ignore_result = $is_ignoring;

                if ( $is_ignoring ) {
                    return 0;
                }
            }
        }

        # Ignore named pipes found in directory searching.  Named
        # pipes created by subprocesses get specified on the command
        # line, so the rule of "always select whatever is on the
        # command line" wins.
        return 0 if -p $File::Next::name;

        # We can't handle unreadable filenames; report them.
        if ( not -r _ ) {
            use filetest 'access';

            if ( not -R $File::Next::name ) {
                if ( $App::Ack::report_bad_filenames ) {
                    App::Ack::warn( "${File::Next::name}: cannot open file for reading" );
                }
                return 0;
            }
        }

        my $file = App::Ack::File->new($File::Next::name);

        if ( $ifiles_filters && $ifiles_filters->filter($file) ) {
            return 0;
        }

        my $match_found = $direct_filters->filter($file);

        # Don't bother invoking inverse filters unless we consider the current file a match.
        if ( $match_found && $inverse_filters->filter( $file ) ) {
            $match_found = 0;
        }
        return $match_found;
    };  # End of compiled sub
}


# Returns a (fairly) unique identifier for a file.
# Use this function to compare two files to see if they're
# equal (ie. the same file, but with a different path/links/etc).
sub get_file_id {
    my ( $filename ) = @_;

    if ( $App::Ack::is_windows ) {
        return File::Next::reslash( $filename );
    }
    else {
        # XXX Is this the best method? It always hits the FS.
        if ( my ( $dev, $inode ) = (stat($filename))[0, 1] ) {
            return join(':', $dev, $inode);
        }
        else {
            # XXX This could be better.
            return $filename;
        }
    }
}


my $match_colno;

{

# Number of context lines
my $n_before_ctx_lines;
my $n_after_ctx_lines;

# Array to keep track of lines that might be required for a "before" context
my @before_context_buf;
# Position to insert next line in @before_context_buf
my $before_context_pos;

# Number of "after" context lines still pending
my $after_context_pending;

# Number of latest line that got printed
my $printed_lineno;

my $is_first_match;
state $has_printed_from_any_file;


sub file_loop_normal {
    my $files = shift;

    $n_before_ctx_lines = $opt_output ? 0 : ($opt_B || 0);
    $n_after_ctx_lines  = $opt_output ? 0 : ($opt_A || 0);

    @before_context_buf = (undef) x $n_before_ctx_lines;
    $before_context_pos = 0;

    $is_tracking_context = $n_before_ctx_lines || $n_after_ctx_lines;

    $is_first_match = 1;

    my $nmatches = 0;
    while ( defined( my $file = $files->next ) ) {
        if ($is_tracking_context) {
            $printed_lineno = 0;
            $after_context_pending = 0;
            if ( $opt_heading ) {
                $is_first_match = 1;
            }
        }
        my $needs_line_scan = 1;
        if ( !$opt_passthru && !$opt_v ) {
            $stats{prescans}++;
            if ( $file->may_be_present( $re_scan ) ) {
                $file->reset();
            }
            else {
                $needs_line_scan = 0;
            }
        }
        if ( $needs_line_scan ) {
            $stats{linescans}++;
            $nmatches += print_matches_in_file( $file );
        }
        last if $opt_1 && $nmatches;
    }

    return $nmatches;
}


sub print_matches_in_file {
    my $file = shift;

    my $filename  = $file->name;

    my $fh = $file->open;
    if ( !$fh ) {
        if ( $App::Ack::report_bad_filenames ) {
            App::Ack::warn( "$filename: $!" );
        }
        return 0;
    }

    my $display_filename = $filename;
    if ( $opt_show_filename && $opt_heading && $opt_color ) {
        $display_filename = Term::ANSIColor::colored($display_filename, $ENV{ACK_COLOR_FILENAME});
    }

    # Check for context before the main loop, so we don't pay for it if we don't need it.
    my $nmatches;
    my $max_count = $opt_m || -1;   # Go negative for no limit so it can never reduce to 0.
    if ( $is_tracking_context ) {
        $nmatches = pmif_context( $fh, $filename, $display_filename, $max_count );
    }
    elsif ( $opt_passthru ) {
        $nmatches = pmif_passthru( $fh, $filename, $display_filename, $max_count );
    }
    elsif ( $opt_v ) {
        $nmatches = pmif_opt_v( $fh, $filename, $display_filename, $max_count );
    }
    else {
        $nmatches = pmif_normal( $fh, $filename, $display_filename, $max_count );
    }

    return $nmatches;
}


sub pmif_context {
    my $fh = shift;
    my $filename = shift;
    my $display_filename = shift;
    my $max_count = shift;

    my $in_range = range_setup();
    my $has_printed_from_this_file;
    my $nmatches = 0;

    $after_context_pending = 0;
    local $_ = undef;

    while ( <$fh> ) {
        chomp;
        $match_colno = undef;

        $in_range = 1 if ( $using_ranges && !$in_range && defined($opt_range_start) && /$opt_range_start/o );

        my $does_match;
        if ( $in_range ) {
            $does_match = /$re_match/o;
            if ( $does_match && defined($re_not) ) {
                local @-;
                $does_match = !/$re_not/o;
            }
            if ( $opt_v ) {
                $does_match = !$does_match;
            }
            else {
                if ( $does_match ) {
                    # @- = @LAST_MATCH_START
                    $match_colno = $-[0] + 1;
                }
            }
        }

        if ( $does_match && $max_count ) {
            if ( !$has_printed_from_this_file ) {
                $stats{filematches}++;
                if ( $opt_break && $has_printed_from_any_file ) {
                    App::Ack::print_blank_line();
                }
                if ( $opt_show_filename && $opt_heading ) {
                    App::Ack::say( $display_filename );
                }
            }
            print_line_with_context( $filename, $_, $. );
            $has_printed_from_this_file = 1;
            $stats{linematches}++;
            $nmatches++;
            $max_count--;
        }
        else {
            if ( $after_context_pending ) {
                # Disable $opt_column since there are no matches in the context lines.
                local $opt_column = 0;
                print_line_with_options( $filename, $_, $., '-' );
                --$after_context_pending;
            }
            elsif ( $n_before_ctx_lines ) {
                # Save line for "before" context.
                $before_context_buf[$before_context_pos] = $_;
                $before_context_pos = ($before_context_pos+1) % $n_before_ctx_lines;
            }
        }

        $in_range = 0 if ( $using_ranges && $in_range && defined($opt_range_end) && /$opt_range_end/o );

        last if ($max_count == 0) && ($after_context_pending == 0);
    }

    return $nmatches;
}


sub pmif_passthru {
    my $fh = shift;
    my $filename = shift;
    my $display_filename = shift;
    my $max_count = shift;

    my $in_range = range_setup();
    my $has_printed_from_this_file;
    my $nmatches = 0;

    local $_ = undef;

    while ( <$fh> ) {
        chomp;

        $in_range = 1 if ( $using_ranges && !$in_range && defined($opt_range_start) && /$opt_range_start/o );

        $match_colno = undef;
        my $does_match = /$re_match/o;
        if ( $does_match && defined($re_not) ) {
            local @-;
            $does_match = !/$re_not/o;
        }
        if ( $in_range && $does_match ) {
            $match_colno = $-[0] + 1;
            if ( !$has_printed_from_this_file ) {
                if ( $opt_break && $has_printed_from_any_file ) {
                    App::Ack::print_blank_line();
                }
                if ( $opt_show_filename && $opt_heading ) {
                    App::Ack::say( $display_filename );
                }
            }
            print_line_with_options( $filename, $_, $., ':' );
            $has_printed_from_this_file = 1;
            $nmatches++;
            $max_count--;
        }
        else {
            if ( $opt_break && !$has_printed_from_this_file && $has_printed_from_any_file ) {
                App::Ack::print_blank_line();
            }
            print_line_with_options( $filename, $_, $., '-', 1 );
            $has_printed_from_this_file = 1;
        }

        $in_range = 0 if ( $using_ranges && $in_range && defined($opt_range_end) && /$opt_range_end/o );

        last if $max_count == 0;
    }

    return $nmatches;
}


sub pmif_opt_v {
    my $fh = shift;
    my $filename = shift;
    my $display_filename = shift;
    my $max_count = shift;

    my $in_range = range_setup();
    my $has_printed_from_this_file;
    my $nmatches = 0;

    $match_colno = undef;
    local $_ = undef;

    while ( <$fh> ) {
        chomp;

        $in_range = 1 if ( $using_ranges && !$in_range && defined($opt_range_start) && /$opt_range_start/o );

        if ( $in_range ) {
            my $does_match = /$re_match/o;
            if ( $does_match && defined($re_not) ) {
                # local @-; No need to localize this because we don't use @-.
                $does_match = !/$re_not/o;
            }
            if ( !$does_match ) {
                if ( !$has_printed_from_this_file ) {
                    if ( $opt_break && $has_printed_from_any_file ) {
                        App::Ack::print_blank_line();
                    }
                    if ( $opt_show_filename && $opt_heading ) {
                        App::Ack::say( $display_filename );
                    }
                }
                print_line_with_context( $filename, $_, $. );
                $has_printed_from_this_file = 1;
                $nmatches++;
                $max_count--;
            }
        }

        $in_range = 0 if ( $using_ranges && $in_range && defined($opt_range_end) && /$opt_range_end/o );

        last if $max_count == 0;
    }

    return $nmatches;
}


sub pmif_normal {
    my $fh = shift;
    my $filename = shift;
    my $display_filename = shift;
    my $max_count = shift;

    my $in_range = range_setup();
    my $has_printed_from_this_file;
    my $nmatches = 0;

    my $last_match_lineno;
    local $_ = undef;

    while ( <$fh> ) {
        chomp;

        $in_range = 1 if ( $using_ranges && !$in_range && defined($opt_range_start) && /$opt_range_start/o );

        if ( $in_range ) {
            $match_colno = undef;
            my $is_match = /$re_match/o;
            if ( $is_match && defined($re_not) ) {
                local @-;
                $is_match = !/$re_not/o;
            }
            if ( $is_match ) {
                $match_colno = $-[0] + 1;
                if ( !$has_printed_from_this_file ) {
                    $stats{filematches}++;
                    if ( $opt_break && $has_printed_from_any_file ) {
                        App::Ack::print_blank_line();
                    }
                    if ( $opt_show_filename && $opt_heading ) {
                        App::Ack::say( $display_filename );
                    }
                }
                if ( $opt_p ) {
                    if ( $last_match_lineno ) {
                        if ( $. > $last_match_lineno + $opt_p ) {
                            App::Ack::print_blank_line();
                        }
                    }
                    elsif ( !$opt_break && $has_printed_from_any_file ) {
                        App::Ack::print_blank_line();
                    }
                }
                s/[\r\n]+$//;
                print_line_with_options( $filename, $_, $., ':' );
                $has_printed_from_this_file = 1;
                $nmatches++;
                $stats{linematches}++;
                $max_count--;
                $last_match_lineno = $.;
            }
        }

        $in_range = 0 if ( $using_ranges && $in_range && defined($opt_range_end) && /$opt_range_end/o );

        last if $max_count == 0;
    }

    return $nmatches;
}


sub print_line_with_options {
    my ( $filename, $line, $lineno, $separator, $skip_coloring ) = @_;

    $has_printed_from_any_file = 1;
    $printed_lineno = $lineno;

    my @line_parts;

    if ( $opt_show_filename && defined($filename) ) {
        my $colno;
        $colno = get_match_colno() if $opt_column;
        if ( $opt_color ) {
            $filename = Term::ANSIColor::colored( $filename, $ENV{ACK_COLOR_FILENAME} );
            $lineno   = Term::ANSIColor::colored( $lineno,   $ENV{ACK_COLOR_LINENO} );
            $colno    = Term::ANSIColor::colored( $colno,    $ENV{ACK_COLOR_COLNO} ) if $opt_column;
        }
        if ( $opt_heading ) {
            push @line_parts, $lineno;
        }
        else {
            push @line_parts, $filename, $lineno;
        }
        push @line_parts, $colno if $opt_column;
    }

    if ( $opt_output ) {
        while ( $line =~ /$re_match/og ) {
            my $output = $opt_output;
            if ( @special_vars_used_by_opt_output ) {
                no strict;

                # Stash copies of the special variables because we can't rely
                # on them not changing in the process of doing the s///.

                my %keep = map { ($_ => ${$_} // '') } @special_vars_used_by_opt_output;
                $keep{_} = $line if exists $keep{_}; # Manually set it because $_ gets reset in a map.
                $keep{f} = $filename if exists $keep{f};
                my $special_vars_used_by_opt_output = join( '', @special_vars_used_by_opt_output );
                $output =~ s/\$([$special_vars_used_by_opt_output])/$keep{$1}/ego;
            }
            App::Ack::say( join( $separator, @line_parts, $output ) );
        }
    }
    else {
        my $underline = '';

        # We have to do underlining before any highlighting because highlighting modifies string length.
        if ( $opt_underline && !$skip_coloring ) {
            while ( $line =~ /$re_hilite/og ) {
                my $match_start = $-[0] // next;
                my $match_end = $+[0];
                my $match_length = $match_end - $match_start;
                last if $match_length <= 0;

                my $spaces_needed = $match_start - length $underline;

                $underline .= (' ' x $spaces_needed);
                $underline .= ('^' x $match_length);
            }
        }
        if ( $opt_color && !$skip_coloring ) {
            my $highlighted = 0; # If highlighted, need to escape afterwards.

            while ( $line =~ /$re_hilite/og ) {
                my $match_start = $-[0] // next;
                my $match_end = $+[0];
                my $match_length = $match_end - $match_start;
                last if $match_length <= 0;

                my $substring    = substr( $line, $match_start, $match_length );
                my $substitution = Term::ANSIColor::colored( $substring, $ENV{ACK_COLOR_MATCH} );

                # Fourth argument replaces the string specified by the first three.
                substr( $line, $match_start, $match_length, $substitution );

                # Move the offset of where /g left off forward the number of spaces of highlighting.
                pos($line) = $match_end + (length( $substitution ) - length( $substring ));
                $highlighted = 1;
            }
            # Reset formatting and delete everything to the end of the line.
            $line .= "\e[0m\e[K" if $highlighted;
        }

        push @line_parts, $line;
        App::Ack::say( join( $separator, @line_parts ) );

        # Print the underline, if appropriate.
        if ( $underline ne '' ) {
            # Figure out how many spaces are used per line for the ANSI coloring.
            state $chars_used_by_coloring;
            if ( !defined($chars_used_by_coloring) ) {
                $chars_used_by_coloring = 0;
                if ( $opt_color ) {
                    my $len_fn = sub { length( Term::ANSIColor::colored( 'x', $ENV{$_[0]} ) ) - 1 };
                    $chars_used_by_coloring += $len_fn->('ACK_COLOR_FILENAME') unless $opt_heading;
                    $chars_used_by_coloring += $len_fn->('ACK_COLOR_LINENO');
                    $chars_used_by_coloring += $len_fn->('ACK_COLOR_COLNO') if $opt_column;
                }
            }

            pop @line_parts; # Leave only the stuff on the left.
            if ( @line_parts ) {
                my $stuff_on_the_left = join( $separator, @line_parts );
                my $spaces_needed = length($stuff_on_the_left) - $chars_used_by_coloring + 1;

                App::Ack::print( ' ' x $spaces_needed );
            }
            App::Ack::say( $underline );
        }
    }

    return;
}

sub print_line_with_context {
    my ( $filename, $matching_line, $lineno ) = @_;

    $matching_line =~ s/[\r\n]+$//;

    # Check if we need to print context lines first.
    if ( $opt_A || $opt_B ) {
        my $before_unprinted = $lineno - $printed_lineno - 1;
        if ( !$is_first_match && ( !$printed_lineno || $before_unprinted > $n_before_ctx_lines ) ) {
            App::Ack::say( '--' );
        }

        # We want at most $n_before_ctx_lines of context.
        if ( $before_unprinted > $n_before_ctx_lines ) {
            $before_unprinted = $n_before_ctx_lines;
        }

        while ( $before_unprinted > 0 ) {
            my $line = $before_context_buf[($before_context_pos - $before_unprinted + $n_before_ctx_lines) % $n_before_ctx_lines];

            chomp $line;

            # Disable $opt->{column} since there are no matches in the context lines.
            local $opt_column = 0;

            print_line_with_options( $filename, $line, $lineno-$before_unprinted, '-' );
            $before_unprinted--;
        }
    }

    print_line_with_options( $filename, $matching_line, $lineno, ':' );

    # We want to get the next $n_after_ctx_lines printed.
    $after_context_pending = $n_after_ctx_lines;

    $is_first_match = 0;

    return;
}

}

sub get_match_colno {
    return $match_colno;
}

sub count_matches_in_file {
    my $file = shift;
    my $bail = shift;   # True if we're just checking for existence.

    my $nmatches = 0;
    my $do_scan = 1;

    if ( !$file->open() ) {
        $do_scan = 0;
        if ( $App::Ack::report_bad_filenames ) {
            App::Ack::warn( $file->name . ": $!" );
        }
    }
    else {
        if ( !$opt_v ) {
            if ( !$file->may_be_present( $re_scan ) ) {
                $do_scan = 0;
            }
        }
    }

    if ( $do_scan ) {
        $file->reset();

        my $in_range = range_setup();

        my $fh = $file->{fh};
        if ( $using_ranges ) {
            while ( <$fh> ) {
                chomp;
                $in_range = 1 if ( !$in_range && defined($opt_range_start) && /$opt_range_start/o );
                if ( $in_range ) {
                    my $is_match = /$re_match/o;
                    if ( $is_match && defined($re_not) ) {
                        $is_match = !/$re_not/o;
                    }
                    if ( $is_match xor $opt_v ) {
                        ++$nmatches;
                        last if $bail;
                    }
                }
                $in_range = 0 if ( $in_range && defined($opt_range_end) && /$opt_range_end/o );
            }
        }
        else {
            while ( <$fh> ) {
                chomp;
                my $is_match = /$re_match/o;
                if ( $is_match && defined($re_not) ) {
                    $is_match = !/$re_not/o;
                }
                if ( $is_match xor $opt_v ) {
                    ++$nmatches;
                    last if $bail;
                }
            }
        }
    }
    $file->close;

    return $nmatches;
}


sub range_setup {
    return !$using_ranges || (!$opt_range_start && $opt_range_end);
}


=pod

=encoding UTF-8

=head1 NAME

ack - grep-like text finder

=head1 SYNOPSIS

    ack [options] PATTERN [FILE...]
    ack -f [options] [DIRECTORY...]

=head1 DESCRIPTION

ack is designed as an alternative to F<grep> for programmers.

ack searches the named input FILEs or DIRECTORYs for lines containing a
match to the given PATTERN.  By default, ack prints the matching lines.
If no FILE or DIRECTORY is given, the current directory will be searched.

PATTERN is a Perl regular expression.  Perl regular expressions
are commonly found in other programming languages, but for the particulars
of their behavior, please consult
L<perlreref|https://perldoc.perl.org/perlreref.html>.  If you don't know
how to use regular expression but are interested in learning, you may
consult L<perlretut|https://perldoc.perl.org/perlretut.html>.  If you do not
need or want ack to use regular expressions, please see the
C<-Q>/C<--literal> option.

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

If files are not specified for searching, either on the command
line or piped in with the C<-x> option, I<ack> delves into
subdirectories selecting files for searching.

I<ack> 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 selection, I<ack> searches through regular files that
are not explicitly excluded by B<--ignore-dir> and B<--ignore-file>
options, either present in F<ackrc> files or on the command line.

The default options for I<ack> ignore certain files and directories.  These
include:

=over 4

=item * Backup files: Files matching F<#*#> or ending with F<~>.

=item * Coredumps: Files matching F<core.\d+>

=item * Version control directories like F<.svn> and F<.git>.

=back

Run I<ack> with the C<--dump> option to see what settings are set.

However, I<ack> always searches the files given on the command line,
no matter what type.  If you tell I<ack> to search in a coredump,
it will search in a coredump.

=head1 DIRECTORY SELECTION

I<ack> descends through the directory tree of the starting directories
specified.  If no directories are specified, the current working directory is
used.  However, it will ignore the shadow directories used by
many version control systems, and the build directories used by the
Perl MakeMaker system.  You may add or remove a directory from this
list with the B<--[no]ignore-dir> option. The option may be repeated
to add/remove multiple directories from the ignore list.

For a complete list of directories that do not get searched, run
C<ack --dump>.

=head1 MATCHING IN A RANGE OF LINES

The C<--range-start> and C<--range-end> options let you specify ranges of
lines to search within each file.

Say you had the following file, called F<testfile>:

    # This function calls print on "foo".
    sub foo {
        print 'foo';
    }
    my $print = 1;
    sub bar {
        print 'bar';
    }
    my $task = 'print';

Calling C<ack print> will give us five matches:

    $ ack print testfile
    # This function calls print on "foo".
        print 'foo';
    my $print = 1;
        print 'bar';
    my $task = 'print';

What if we only want to search for C<print> within the subroutines?  We can
specify ranges of lines that we want ack to search.  The range starts with
any line that matches the pattern C<^sub \w+>, and stops with any line that
matches C<^}>.

    $ ack --range-start='^sub \w+' --range-end='^}' print testfile
        print 'foo';
        print 'bar';

Note that ack searched two ranges of lines.  The listing below shows which
lines were in a range and which were out of the range.

    Out # This function calls print on "foo".
    In  sub foo {
    In      print 'foo';
    In  }
    Out my $print = 1;
    In  sub bar {
    In      print 'bar';
    In  }
    Out my $task = 'print';

You don't have to specify both C<--range-start> and C<--range-end>.  IF
C<--range-start> is omitted, then the range runs from the first line in the
file until the first line that matches C<--range-end>.  Similarly, if
C<--range-end> is omitted, the range runs from the first line matching
C<--range-start> to the end of the file.

For example, if you wanted to search all HTML files up until the first
instance of the C<< <body> >>, you could do

    ack foo --html --range-end='<body>'

Or to search after Perl's `__DATA__` or `__END__` markers, you would do

    ack pattern --perl --range-start='^__(END|DATA)__'

It's possible for a range to start and stop on the same line.  For example

    --range-start='<title>' --range-end='</title>'

would match this line as both the start and end of the range, making a
one-line range.

    <title>Page title</title>

Note that the patterns in C<--range-start> and C<--range-end> are not
affected by options like C<-i>, C<-w> and C<-Q> that modify the behavior of
the main pattern being matched.

Again, ranges only affect where matches are looked for.  Everything else in
ack works the same way.  Using C<-c> option with a range will give a count
of all the matches that appear within those ranges.  The C<-l> shows those
files that have a match within a range, and the C<-L> option shows files
that do not have a match within a range.

The C<-v> option for negating a match works inside the range, too.
To see lines that don't match "google" within the "<head>" section of
your HTML files, you could do:

    ack google -v --html --range-start='<head' --range-end='</head>'

Specifying a range to search does not affect how matches are displayed.
The context for a match will still be the same, and

Using the context options work the same way, and will show context
lines for matches even if the context lines fall outside the range.
Similarly, C<--passthru> will show all lines in the file, but only show
matches for lines within the range.

=head1 OPTIONS

=over 4

=item B<--ackrc>

Specifies an ackrc file to load after all others; see L</"ACKRC LOCATION SEMANTICS">.

=item B<--and=PATTERN>

Specifies a I<PATTERN> that MUST ALSO be found on a given line for a match to
occur. This option can be repeated.

If you want to find all the lines with both "dogs" or "cats", use:

    ack dogs --and cats

Note that the options that affect "dogs" also affect "cats", so if you have

    ack -i -w dogs --and cats

then the search for both "dogs" and "cats" will be case-insensitive and be
word-limited.

See also the other two boolean options C<--or> and C<--not>, neither of
which can be used with C<--and>.

=item B<-A I<NUM>>, B<--after-context=I<NUM>>

Print I<NUM> lines of trailing context after matching lines.

=item B<-B I<NUM>>, B<--before-context=I<NUM>>

Print I<NUM> lines of leading context before matching lines.

=item B<--[no]break>

Print a break between results from different files. On by default
when used interactively.

=item B<-C [I<NUM>]>, B<--context[=I<NUM>]>

Print I<NUM> lines (default 2) of context around matching lines.
You can specify zero lines of context to override another context
specified in an ackrc.

=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.

If combined with B<-h> (B<--no-filename>) ack outputs only one total
count.

=item B<--[no]color>, B<--[no]colour>

B<--color> highlights the matching text.  B<--nocolor> suppresses
the color.  This is on by default unless the output is redirected.

On Windows, this option is off by default unless the
L<Win32::Console::ANSI> module is installed or the C<ACK_PAGER_COLOR>
environment variable is used.

=item B<--color-filename=I<color>>

Sets the color to be used for filenames.

=item B<--color-match=I<color>>

Sets the color to be used for matches.

=item B<--color-colno=I<color>>

Sets the color to be used for column numbers.

=item B<--color-lineno=I<color>>

Sets the color to be used for line numbers.

=item B<--[no]column>

Show the column number of the first match.  This is helpful for
editors that can place your cursor at a given position.

=item B<--create-ackrc>

Dumps the default ack options to standard output.  This is useful for
when you want to customize the defaults.

=item B<--dump>

Writes the list of options loaded and where they came from to standard
output.  Handy for debugging.

=item B<--[no]env>

B<--noenv> disables all environment processing. No F<.ackrc> is
read and all environment variables are ignored. By default, F<ack>
considers F<.ackrc> and settings in the environment.

=item B<--flush>

B<--flush> flushes output immediately.  This is off by default
unless ack is running interactively (when output goes to a pipe or
file).

=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<--files-from=I<FILE>>

The list of files to be searched is specified in I<FILE>.  The list of
files are separated by newlines.  If I<FILE> is C<->, the list is loaded
from standard input.

Note that the list of files is B<not> filtered in any way.  If you
add C<--type=html> in addition to C<--files-from>, the C<--type> will
be ignored.


=item B<--[no]filter>

Forces ack to act as if it were receiving input via a pipe.

=item B<--[no]follow>

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<PATTERN>>

Print searchable files where the relative path + filename matches
I<PATTERN>.

Note that

    ack -g foo

is exactly the same as

    ack -f | ack foo

This means that just as ack will not search, for example, F<.jpg>
files, C<-g> will not list F<.jpg> files either.  ack is not intended
to be a general-purpose file finder.

Note also that if you have C<-i> in your .ackrc that the filenames
to be matched will be case-insensitive as well.

This option can be combined with B<--color> to make it easier to
spot the match.

=item B<--[no]group>

B<--group> groups matches by file name.  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. This is the default unless searching
a single explicitly specified file.

=item B<-h>, B<--no-filename>

Suppress the prefixing of filenames on output when multiple files are
searched.

=item B<--[no]heading>

Print a filename heading above each file's results.  This is the default
when used interactively.

=item B<--help>

Print a short help statement.

=item B<--help-types>

Print all known types.

=item B<--help-colors>

Print a chart of various color combinations.

=item B<--help-rgb-colors>

Like B<--help-colors> but with more precise RGB colors.

=item B<-i>, B<--ignore-case>

Ignore case distinctions in PATTERN.  Overrides B<--smart-case> and B<-I>.

=item B<-I>, B<--no-ignore-case>

Turns on case distinctions in PATTERN.  Overrides B<--smart-case> and B<-i>.

=item B<--ignore-ack-defaults>

Tells ack to completely ignore the default definitions provided with ack.
This is useful in combination with B<--create-ackrc> if you I<really> want
to customize ack.

=item B<--[no]ignore-dir=I<DIRNAME>>, B<--[no]ignore-directory=I<DIRNAME>>

Ignore directory (as CVS, .svn, etc are ignored). May be used
multiple times to ignore multiple directories. For example, mason
users may wish to include B<--ignore-dir=data>. The B<--noignore-dir>
option allows users to search directories which would normally be
ignored (perhaps to research the contents of F<.svn/props> directories).

The I<DIRNAME> must always be a simple directory name. Nested
directories like F<foo/bar> are NOT supported. You would need to
specify B<--ignore-dir=foo> and then no files from any foo directory
are taken into account by ack unless given explicitly on the command
line.

=item B<--ignore-file=I<FILTER:ARGS>>

Ignore files matching I<FILTER:ARGS>.  The filters are specified
identically to file type filters as seen in L</"Defining your own types">.

=item B<-k>, B<--known-types>

Limit selected files to those with types that ack knows about.

=item B<-l>, B<--files-with-matches>

Only print the filenames of matching files, instead of the matching text.

=item B<-L>, B<--files-without-matches>

Only print the filenames of files that do I<NOT> match.

=item B<--match I<PATTERN>>

Specify the I<PATTERN> explicitly. This is helpful if you don't want to put the
regex as your first argument, e.g. when executing multiple searches over the
same set of files.

    # search for foo and bar in given files
    ack file1 t/file* --match foo
    ack file1 t/file* --match bar

=item B<-m=I<NUM>>, B<--max-count=I<NUM>>

Print only I<NUM> matches out of each file.  If you want to stop ack
after printing the first match of any kind, use the B<-1> options.

=item B<--man>

Print this manual page.

=item B<-n>, B<--no-recurse>

No descending into subdirectories.

=item B<--not=PATTERN>

Specifies a I<PATTERN> that must NOT be true on a given line for a match to
occur. This option can be repeated.

If you want to find all the lines with "dogs" but not if "cats" or "fish"
appear on the line, use:

    ack dogs --not cats --not fish

Note that the options that affect "dogs" also affect "cats" and "fish", so
if you have

    ack -i -w dogs --not cats

then the search for both "dogs" and "cats" will be case-insensitive and be
word-limited.

See also the other two boolean options C<--and> and C<--or>, neither of
which can be used with C<--not>.

=item B<-o>

Show only the part of each line matching PATTERN (turns off text
highlighting).  This is exactly the same as C<--output=$&>.

=item B<--or=PATTERN>

Specifies a I<PATTERN> that MAY be found on a given line for a match to
occur. This option can be repeated.

If you want to find all the lines with "dogs" or "cats", use:

    ack dogs --or cats

Note that the options that affect "dogs" also affect "cats", so if you have

    ack -i -w dogs --or cats

then the search for both "dogs" and "cats" will be case-insensitive and be
word-limited.

See also the other two boolean options C<--and> and C<--not>, neither of
which can be used with C<--or>.

=item B<--output=I<expr>>

Output the evaluation of I<expr> for each line (turns off text
highlighting). If PATTERN matches more than once then a line is
output for each non-overlapping match.

I<expr> may contain the strings "\n", "\r" and "\t", which will be
expanded to their corresponding characters line feed, carriage return
and tab, respectively.

I<expr> may also contain the following Perl special variables:

=over 4

=item C<$1> through C<$9>

The subpattern from the corresponding set of capturing parentheses.
If your pattern is C<(.+) and (.+)>, and the string is "this and
that', then C<$1> is "this" and C<$2> is "that".

=item C<$_>

The contents of the line in the file.

=item C<$.>

The number of the line in the file.

=item C<$&>, C<$`> and C<$'>

C<$&> is the string matched by the pattern, C<$`> is what
precedes the match, and C<$'> is what follows it.  If the pattern
is C<gra(ph|nd)> and the string is "lexicographic", then C<$&> is
"graph", C<$`> is "lexico" and C<$'> is "ic".

Use of these variables in your output will slow down the pattern
matching.

=item C<$+>

The match made by the last parentheses that matched in the pattern.
For example, if your pattern is C<Version: (.+)|Revision: (.+)>,
then C<$+> will contain whichever set of parentheses matched.

=item C<$f>

C<$f> is available, in C<--output> only, to insert the filename.
This is a stand-in for the discovered C<$filename> usage in old C<< ack2 --output >>,
which is disallowed with C<ack3> improved security.

The intended usage is to provide the grep or compile-error syntax needed for editor/IDE go-to-line integration,
e.g. C<--output=$f:$.:$_> or C<--output=$f\t$.\t$&>

=back

=item B<--pager=I<program>>, B<--nopager>

B<--pager> directs ack's output through I<program>.  This can also be specified
via the C<ACK_PAGER> and C<ACK_PAGER_COLOR> environment variables.

Using --pager does not suppress grouping and coloring like piping
output on the command-line does.

B<--nopager> cancels any setting in F<~/.ackrc>, C<ACK_PAGER> or C<ACK_PAGER_COLOR>.
No output will be sent through a pager.

=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<--print0>

Only works in conjunction with B<-f>, B<-g>, B<-l> or B<-c>, options
that only list filenames.  The filenames are output separated with a
null byte instead of the usual newline. This is helpful when dealing
with filenames that contain whitespace, e.g.

    # Remove all files of type HTML.
    ack -f --html --print0 | xargs -0 rm -f

=item B<-p[N]>, B<--proximate[=N]>

Groups together match lines that are within N lines of each other.
This is useful for visually picking out matches that appear close
to other matches.

For example, if you got these results without the C<--proximate> option,

    15: First match
    18: Second match
    19: Third match
    37: Fourth match

they would look like this with C<--proximate=1>

    15: First match

    18: Second match
    19: Third match

    37: Fourth match

and this with C<--proximate=3>.

    15: First match
    18: Second match
    19: Third match

    37: Fourth match

If N is omitted, N is set to 1.

=item B<-P>

Negates the effect of the B<--proximate> option.  Shortcut for B<--proximate=0>.

=item B<-Q>, B<--literal>

Quote all metacharacters in PATTERN, it is treated as a literal.

=item B<-r>, B<-R>, B<--recurse>

Recurse into sub-directories. This is the default and just here for
compatibility with grep. You can also use it for turning B<--no-recurse> off.

=item B<--range-start=PATTERN>, B<--range-end=PATTERN>

Specifies patterns that mark the start and end of a range.  See
L<MATCHING IN A RANGE OF LINES> for details.

=item B<-s>

Suppress error messages about nonexistent or unreadable files.  This is taken
from fgrep.

=item B<-S>, B<--[no]smart-case>, B<--no-smart-case>

Ignore case in the search strings if PATTERN contains no uppercase
characters. This is similar to C<smartcase> in the vim text editor.
The options overrides B<-i> and B<-I>.

B<-S> is a synonym for B<--smart-case>.

B<-i> always overrides this option.

=item B<--sort-files>

Sorts the found files lexicographically.  Use this if you want your file
listings to be deterministic between runs of I<ack>.

=item B<--show-types>

Outputs the filetypes that ack associates with each file.

Works with B<-f> and B<-g> options.

=item B<-t TYPE>, B<--type=TYPE>, B<--TYPE>

Specify the types of files to include in the search.
TYPE is a filetype, like I<perl> or I<xml>.  B<--type=perl> can
also be specified as B<--perl>, although this is deprecated.

Type inclusions can be repeated and are ORed together.

See I<ack --help-types> for a list of valid types.

=item B<-T TYPE>, B<--type=noTYPE>, B<--noTYPE>

Specifies the type of files to exclude from the search.  B<--type=noperl>
can be done as B<--noperl>, although this is deprecated.

If a file is of both type "foo" and "bar", specifying both B<--type=foo>
and B<--type=nobar> will exclude the file, because an exclusion takes
precedence over an inclusion.

=item B<--type-add I<TYPE>:I<FILTER>:I<ARGS>>

Files with the given ARGS applied to the given FILTER
are recognized as being of (the existing) type TYPE.
See also L</"Defining your own types">.

=item B<--type-set I<TYPE>:I<FILTER>:I<ARGS>>

Files with the given ARGS applied to the given FILTER are recognized as
being of type TYPE. This replaces an existing definition for type TYPE.  See
also L</"Defining your own types">.

=item B<--type-del I<TYPE>>

The filters associated with TYPE are removed from Ack, and are no longer considered
for searches.

=item B<--[no]underline>

Turns on underlining of matches, where "underlining" is printing a line of
carets under the match.

    $ ack -u foo
    peanuts.txt
    17: Come kick the football you fool
                      ^^^          ^^^
    623: Price per square foot
                          ^^^

This is useful if you're dumping the results of an ack run into a text
file or printer that doesn't support ANSI color codes.

The setting of underline does not affect highlighting of matches.

=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.

=item B<-x>

An abbreviation for B<--files-from=->. The list of files to search are read
from standard input, with one line per file.

Note that the list of files is B<not> filtered in any way.  If you add
C<--type=html> in addition to C<-x>, the C<--type> will be ignored.

=item B<-1>

Stops after reporting first match of any kind.  This is different
from B<--max-count=1> or B<-m1>, where only one match per file is
shown.  Also, B<-1> works with B<-f> and B<-g>, where B<-m> does
not.

=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<--bar>

Check with the admiral for traps.

=item B<--cathy>

Chocolate, Chocolate, Chocolate!

=back

=head1 THE .ackrc FILE

The F<.ackrc> file contains command-line options that are prepended
to the command line before processing.  Multiple options may live
on multiple lines.  Lines beginning with a # are ignored.  A F<.ackrc>
might look like this:

    # Always sort the files
    --sort-files

    # Always color, even if piping to another program
    --color

    # Use "less -r" as my pager
    --pager=less -r

Note that arguments with spaces in them do not need to be quoted,
as they are not interpreted by the shell. Basically, each I<line>
in the F<.ackrc> file is interpreted as one element of C<@ARGV>.

F<ack> looks in several locations for F<.ackrc> files; the searching
process is detailed in L</"ACKRC LOCATION SEMANTICS">.  These
files are not considered if B<--noenv> is specified on the command line.

=head1 Defining your own types

ack allows you to define your own types in addition to the predefined
types. This is done with command line options that are best put into
an F<.ackrc> file - then you do not have to define your types over and
over again. In the following examples the options will always be shown
on one command line so that they can be easily copy & pasted.

File types can be specified both with the I<--type=xxx> option,
or the file type as an option itself.  For example, if you create
a filetype of "cobol", you can specify I<--type=cobol> or simply
I<--cobol>.  File types must be at least two characters long.  This
is why the C language is I<--cc> and the R language is I<--rr>.

I<ack --perl foo> searches for foo in all perl files. I<ack --help-types>
tells you, that perl files are files ending
in .pl, .pm, .pod or .t. So what if you would like to include .xs
files as well when searching for --perl files? I<ack --type-add perl:ext:xs --perl foo>
does this for you. B<--type-add> appends
additional extensions to an existing type.

If you want to define a new type, or completely redefine an existing
type, then use B<--type-set>. I<ack --type-set eiffel:ext:e,eiffel> defines
the type I<eiffel> to include files with
the extensions .e or .eiffel. So to search for all eiffel files
containing the word Bertrand use I<ack --type-set eiffel:ext:e,eiffel --eiffel Bertrand>.
As usual, you can also write B<--type=eiffel>
instead of B<--eiffel>. Negation also works, so B<--noeiffel> excludes
all eiffel files from a search. Redefining also works: I<ack --type-set cc:ext:c,h>
and I<.xs> files no longer belong to the type I<cc>.

When defining your own types in the F<.ackrc> file you have to use
the following:

  --type-set=eiffel:ext:e,eiffel

or writing on separate lines

  --type-set
  eiffel:ext:e,eiffel

The following does B<NOT> work in the F<.ackrc> file:

  --type-set eiffel:ext:e,eiffel

In order to see all currently defined types, use I<--help-types>, e.g.
I<ack --type-set backup:ext:bak --type-add perl:ext:perl --help-types>

In addition to filtering based on extension, ack offers additional
filter types.  The generic syntax is
I<--type-set TYPE:FILTER:ARGS>; I<ARGS> depends on the value
of I<FILTER>.

=over 4

=item is:I<FILENAME>

I<is> filters match the target filename exactly.  It takes exactly one
argument, which is the name of the file to match.

Example:

    --type-set make:is:Makefile

=item ext:I<EXTENSION>[,I<EXTENSION2>[,...]]

I<ext> filters match the extension of the target file against a list
of extensions.  No leading dot is needed for the extensions.

Example:

    --type-set perl:ext:pl,pm,t

=item match:I<PATTERN>

I<match> filters match the target filename against a regular expression.
The regular expression is made case-insensitive for the search.

Example:

    --type-set make:match:/(gnu)?makefile/

=item firstlinematch:I<PATTERN>

I<firstlinematch> matches the first line of the target file against a
regular expression.  Like I<match>, the regular expression is made
case insensitive.

Example:

    --type-add perl:firstlinematch:/perl/

=back

=head1 ACK COLORS

ack allows customization of the colors it uses when presenting matches
onscreen.  It uses the colors available in Perl's L<Term::ANSIColor>
module, which provides the following listed values. Note that case does not
matter when using these values.

There are four different colors ack uses:

    Aspect      Option              Env. variable       Default
    --------    -----------------   ------------------  ---------------
    filename    --color-filename    ACK_COLOR_FILENAME  black on_yellow
    match       --color-match       ACK_COLOR_MATCH     bold green
    line no.    --color-lineno      ACK_COLOR_LINENO    bold yellow
    column no.  --color-colno       ACK_COLOR_COLNO     bold yellow

The column number column is only used if the column number is shown because
of the --column option.

Colors may be specified by command-line option, such as
C<ack --color-filename='red on_white'>, or by setting an environment
variable, such as C<ACK_COLOR_FILENAME='red on_white'>.  Options for colors
can be set in your ACKRC file (See "THE .ackrc FILE").

ack can understand the following colors for the foreground:

    black red green yellow blue magenta cyan white

The optional background color is specified by prepending "on_" to one of
the foreground colors:

    on_black on_red on_green on_yellow on_blue on_magenta on_cyan on_white

Each of the foreground colors can be modified with the following
attributes, which may or may not be supported by your terminal:

    bold faint italic underline blink reverse concealed

Any combinations of modifiers can be added to the foreground color. If your
terminal supports it, and you enjoy visual punishment, you can specify:

    ack --color-filename="blink italic underline bold red on_yellow"

For charts of the colors and what they look like, run C<ack --help-colors>
and C<ack --help-rgb-colors>.

If the eight standard colors, in their bold, faint and unmodified states,
aren't enough for you to choose from, you can also specify colors by their
RGB values.  They are specified as "rgbXYZ" where X, Y, and Z are values
between 0 and 5 giving the intensity of red, green and blue, respectively.
Therefore, "rgb500" is pure red, "rgb505" is purple, and so on.

Background colors can be specified with the "on_" prefix prepended on an
RGB color, so that "on_rgb505" would be a purple background.

The modifier attributes of blink, italic, underscore and so on may or may
not work on the RGB colors.

For a chart of the 216 possible RGB colors, run C<ack --help-rgb-colors>.

=head1 ENVIRONMENT VARIABLES

For commonly-used ack options, environment variables can make life
much easier.  These variables are ignored if B<--noenv> is specified
on the command line.

=over 4

=item ACKRC

Specifies the location of the user's F<.ackrc> file.  If this file doesn't
exist, F<ack> looks in the default location.

=item ACK_COLOR_COLNO

Color specification for the column number in ack's output.  By default, the
column number is not shown.  You have to enable it with the B<--column>
option.  See the section "ack Colors" above.

=item ACK_COLOR_FILENAME

Color specification for the filename in ack's output.  See the section "ack
Colors" above.

=item ACK_COLOR_LINENO

Color specification for the line number in ack's output.  See the section
"ack Colors" above.

=item ACK_COLOR_MATCH

Color specification for the matched text in ack's output.  See the section
"ack Colors" above.

=item ACK_PAGER

Specifies a pager program, such as C<more>, C<less> or C<most>, to which
ack will send its output.

Using C<ACK_PAGER> does not suppress grouping and coloring like
piping output on the command-line does, except that on Windows
ack will assume that C<ACK_PAGER> does not support color.

C<ACK_PAGER_COLOR> overrides C<ACK_PAGER> if both are specified.

=item ACK_PAGER_COLOR

Specifies a pager program that understands ANSI color sequences.
Using C<ACK_PAGER_COLOR> does not suppress grouping and coloring
like piping output on the command-line does.

If you are not on Windows, you never need to use C<ACK_PAGER_COLOR>.

=back

=head1 ACK & OTHER TOOLS

=head2 Simple vim integration

F<ack> integrates easily with the Vim text editor. Set this in your
F<.vimrc> to use F<ack> instead of F<grep>:

    set grepprg=ack\ -k

That example uses C<-k> to search through only files of the types ack
knows about, but you may use other default flags. Now you can search
with F<ack> and easily step through the results in Vim:

  :grep Dumper perllib

=head2 Editor integration

Many users have integrated ack into their preferred text editors.
For details and links, see L<https://beyondgrep.com/more-tools/>.

=head2 Shell and Return Code

For greater compatibility with I<grep>, I<ack> in normal use returns
shell return or exit code of 0 only if something is found and 1 if
no match is found.

(Shell exit code 1 is C<$?=256> in perl with C<system> or backticks.)

The I<grep> code 2 for errors is not used.

If C<-f> or C<-g> are specified, then 0 is returned if at least one
file is found.  If no files are found, then 1 is returned.

=cut

=head1 DEBUGGING ACK PROBLEMS

If ack gives you output you're not expecting, start with a few simple steps.

=head2 Try it with B<--noenv>

Your environment variables and F<.ackrc> may be doing things you're
not expecting, or forgotten you specified.  Use B<--noenv> to ignore
your environment and F<.ackrc>.

=head2 Use B<-f> to see what files have been selected for searching

Ack's B<-f> was originally added as a debugging tool.  If ack is
not finding matches you think it should find, run F<ack -f> to see
what files have been selected.  You can also add the C<--show-types>
options to show the type of each file selected.

=head2 Use B<--dump>

This lists the ackrc files that are loaded and the options loaded
from them.  You may be loading an F<.ackrc> file that you didn't know
you were loading.

=head1 ACKRC LOCATION SEMANTICS

Ack can load its configuration from many sources.  The following list
specifies the sources Ack looks for configuration files; each one
that is found is loaded in the order specified here, and
each one overrides options set in any of the sources preceding
it.  (For example, if I set --sort-files in my user ackrc, and
--nosort-files on the command line, the command line takes
precedence)

=over 4

=item *

Defaults are loaded from App::Ack::ConfigDefaults.  This can be omitted
using C<--ignore-ack-defaults>.

=item * Global ackrc

Options are then loaded from the global ackrc.  This is located at
C</etc/ackrc> on Unix-like systems.

Under Windows XP and earlier, the global ackrc is at
C<C:\Documents and Settings\All Users\Application Data\ackrc>

Under Windows Vista/7, the global ackrc is at
C<C:\ProgramData\ackrc>

The C<--noenv> option prevents all ackrc files from being loaded.

=item * User ackrc

Options are then loaded from the user's ackrc.  This is located at
C<$HOME/.ackrc> on Unix-like systems.

Under Windows XP and earlier, the user's ackrc is at
C<C:\Documents and Settings\$USER\Application Data\ackrc>.

Under Windows Vista/7, the user's ackrc is at
C<C:\Users\$USER\AppData\Roaming\ackrc>.

If you want to load a different user-level ackrc, it may be specified
with the C<$ACKRC> environment variable.

The C<--noenv> option prevents all ackrc files from being loaded.

=item * Project ackrc

Options are then loaded from the project ackrc.  The project ackrc is
the first ackrc file with the name C<.ackrc> or C<_ackrc>, first searching
in the current directory, then the parent directory, then the grandparent
directory, etc.  This can be omitted using C<--noenv>.

=item * --ackrc

The C<--ackrc> option may be included on the command line to specify an
ackrc file that can override all others.  It is consulted even if C<--noenv>
is present.

=item * Command line

Options are then loaded from the command line.

=back

=head1 BUGS & ENHANCEMENTS

ack is based at GitHub at L<https://github.com/beyondgrep/ack3>

Please report any bugs or feature requests to the issues list at
GitHub: L<https://github.com/beyondgrep/ack3/issues>.

Please include the operating system that you're using; the output of
the command C<ack --version>; and any customizations in your F<.ackrc>
you may have.

To suggest enhancements, please submit an issue at
L<https://github.com/beyondgrep/ack3/issues>.  Also read the
F<DEVELOPERS.md> file in the ack code repository.

Also, feel free to discuss your issues on the ack mailing
list at L<https://groups.google.com/group/ack-users>.

=head1 SUPPORT

Support for and information about F<ack> can be found at:

=over 4

=item * The ack homepage

L<https://beyondgrep.com/>

=item * Source repository

L<https://github.com/beyondgrep/ack3>

=item * The ack issues list at GitHub

L<https://github.com/beyondgrep/ack3/issues>

=item * The ack announcements mailing list

L<https://groups.google.com/group/ack-announcement>

=item * The ack users' mailing list

L<https://groups.google.com/group/ack-users>

=item * The ack development mailing list

L<https://groups.google.com/group/ack-users>

=back

=head1 COMMUNITY

There are ack mailing lists and a Slack channel for ack.  See
L<https://beyondgrep.com/community/> for details.

=head1 FAQ

This is the Frequently Asked Questions list for ack.

=head2 Can I stop using grep now?

Many people find I<ack> to be better than I<grep> as an everyday tool
99% of the time, but don't throw I<grep> away, because there are times
you'll still need it.  For example, you might be looking through huge
log files and not using regular expressions.  In that case, I<grep>
will probably perform better.

=head2 Why isn't ack finding a match in (some file)?

First, take a look and see if ack is even looking at the file.  ack is
intelligent in what files it will search and which ones it won't, but
sometimes that can be surprising.

Use the C<-f> switch, with no regex, to see a list of files that ack
will search for you.  If your file doesn't show up in the list of files
that C<ack -f> shows, then ack never looks in it.

=head2 Wouldn't it be great if F<ack> did search & replace?

No, ack will always be read-only.  Perl has a perfectly good way
to do search & replace in files, using the C<-i>, C<-p> and C<-n>
switches.

You can certainly use ack to select your files to update.  For
example, to change all "foo" to "bar" in all PHP files, you can do
this from the Unix shell:

    $ perl -i -p -e's/foo/bar/g' $(ack -f --php)

=head2 Can I make ack recognize F<.xyz> files?

Yes!  Please see L</"Defining your own types"> in the ack manual.

=head2 Will you make ack recognize F<.xyz> files by default?

We might, depending on how widely-used the file format is.

Submit an issue at in the GitHub issue queue at
L<https://github.com/beyondgrep/ack3/issues>.  Explain what the file format
is, where we can find out more about it, and what you have been using
in your F<.ackrc> to support it.

Please do not bother creating a pull request.  The code for filetypes
is trivial compared to the rest of the process we go through.

=head2 Why is it called ack if it's called ack-grep?

The name of the program is "ack".  Some packagers have called it
"ack-grep" when creating packages because there's already a package
out there called "ack" that has nothing to do with this ack.

I suggest you make a symlink named F<ack> that points to F<ack-grep>
because one of the crucial benefits of ack is having a name that's
so short and simple to type.

To do that, run this with F<sudo> or as root:

   ln -s /usr/bin/ack-grep /usr/bin/ack

Alternatively, you could use a shell alias:

    # bash/zsh
    alias ack=ack-grep

    # csh
    alias ack ack-grep

=head2 What does F<ack> mean?

Nothing.  I wanted a name that was easy to type and that you could
pronounce as a single syllable.

=head2 Can I do multi-line regexes?

No, ack does not support regexes that match multiple lines.  Doing
so would require reading in the entire file at a time.

If you want to see lines near your match, use the C<--A>, C<--B>
and C<--C> switches for displaying context.

=head2 Why is ack telling me I have an invalid option when searching for C<+foo>?

ack treats command line options beginning with C<+> or C<-> as options; if you
would like to search for these, you may prefix your search term with C<--> or
use the C<--match> option.  (However, don't forget that C<+> is a regular
expression metacharacter!)

=head2 Why does C<"ack '.{40000,}'"> fail?  Isn't that a valid regex?

The Perl language limits the repetition quantifier to 32K.  You
can search for C<.{32767}> but not C<.{32768}>.

=head2 Ack does "X" and shouldn't, should it?

We try to remain as close to grep's behavior as possible, so when in
doubt, see what grep does!  If there's a mismatch in functionality there,
please submit an issue to GitHub, and/or bring it up on the ack-users
mailing list.

=cut

=head1 ACKNOWLEDGEMENTS

How appropriate to have I<ack>nowledgements!

Thanks to everyone who has contributed to ack in any way, including
Geraint Edwards,
Loren Howard,
Yaroslav Halchenko,
Thiago Perrotta,
Thomas Gossler,
Kieran Mace,
Volker Glave,
Axel Beckert,
Eric Pement,
Gabor Szabo,
Frieder Bluemle,
Grzegorz Kaczmarczyk,
Dan Book,
Tomasz Konojacki,
Salomon Smeke,
M. Scott Ford,
Anders Eriksson,
H.Merijn Brand,
Duke Leto,
Gerhard Poul,
Ethan Mallove,
Marek Kubica,
Ray Donnelly,
Nikolaj Schumacher,
Ed Avis,
Nick Morrott,
Austin Chamberlin,
Varadinsky,
SE<eacute>bastien FeugE<egrave>re,
Jakub Wilk,
Pete Houston,
Stephen Thirlwall,
Jonah Bishop,
Chris Rebert,
Denis Howe,
RaE<uacute>l GundE<iacute>n,
James McCoy,
Daniel Perrett,
Steven Lee,
Jonathan Perret,
Fraser Tweedale,
RaE<aacute>l GundE<aacute>n,
Steffen Jaeckel,
Stephan Hohe,
Michael Beijen,
Alexandr Ciornii,
Christian Walde,
Charles Lee,
Joe McMahon,
John Warwick,
David Steinbrunner,
Kara Martens,
Volodymyr Medvid,
Ron Savage,
Konrad Borowski,
Dale Sedivic,
Michael McClimon,
Andrew Black,
Ralph Bodenner,
Shaun Patterson,
Ryan Olson,
Shlomi Fish,
Karen Etheridge,
Olivier Mengue,
Matthew Wild,
Scott Kyle,
Nick Hooey,
Bo Borgerson,
Mark Szymanski,
Marq Schneider,
Packy Anderson,
JR Boyens,
Dan Sully,
Ryan Niebur,
Kent Fredric,
Mike Morearty,
Ingmar Vanhassel,
Eric Van Dewoestine,
Sitaram Chamarty,
Adam James,
Richard Carlsson,
Pedro Melo,
AJ Schuster,
Phil Jackson,
Michael Schwern,
Jan Dubois,
Christopher J. Madsen,
Matthew Wickline,
David Dyck,
Jason Porritt,
Jjgod Jiang,
Thomas Klausner,
Uri Guttman,
Peter Lewis,
Kevin Riggle,
Ori Avtalion,
Torsten Blix,
Nigel Metheringham,
GE<aacute>bor SzabE<oacute>,
Tod Hagan,
Michael Hendricks,
E<AElig>var ArnfjE<ouml>rE<eth> 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 BjE<oslash>rn Hansen,
Jerry Gay,
Will Coleda,
Mike O'Regan,
Slaven ReziE<0x107>,
Mark Stosberg,
David Alan Pisoni,
Adriano Ferreira,
James Keenan,
Leland Johnson,
Ricardo Signes,
Pete Krawczyk and
Rob Hoelz.

=head1 AUTHOR

Andy Lester, C<< <andy at petdance.com> >>

=head1 COPYRIGHT & LICENSE

Copyright 2005-2024 Andy Lester.

This program is free software; you can redistribute it and/or modify
it under the terms of the Artistic License v2.0.

See https://www.perlfoundation.org/artistic-license-20.html or the LICENSE.md
file that comes with the ack distribution.

=cut

1;

Filemanager

Name Type Size Permission Actions
X11 Folder 0755
7z File 38 B 0755
7za File 39 B 0755
7zr File 39 B 0755
HTMLLinker File 71.49 KB 0755
JxrDecApp File 66.24 KB 0755
JxrEncApp File 67.63 KB 0755
RTIMULibCal File 66.55 KB 0755
RTIMULibDrive11 File 66.34 KB 0755
X File 274 B 0755
Xorg File 274 B 0755
Xvnc File 1.54 MB 4755
Xvnc-core File 11.77 MB 0755
Xwayland File 2.34 MB 0755
[ File 66.34 KB 0755
aa-enabled File 66.17 KB 0755
aa-exec File 66.36 KB 0755
aa-features-abi File 66.38 KB 0755
aarch64-linux-gnu-addr2line File 67.08 KB 0755
aarch64-linux-gnu-ar File 67.09 KB 0755
aarch64-linux-gnu-as File 454.99 KB 0755
aarch64-linux-gnu-c++filt File 66.47 KB 0755
aarch64-linux-gnu-cpp File 1.07 MB 0755
aarch64-linux-gnu-cpp-14 File 1.07 MB 0755
aarch64-linux-gnu-elfedit File 66.98 KB 0755
aarch64-linux-gnu-g++ File 1.07 MB 0755
aarch64-linux-gnu-g++-14 File 1.07 MB 0755
aarch64-linux-gnu-gcc File 1.07 MB 0755
aarch64-linux-gnu-gcc-14 File 1.07 MB 0755
aarch64-linux-gnu-gcc-ar File 66.52 KB 0755
aarch64-linux-gnu-gcc-ar-14 File 66.52 KB 0755
aarch64-linux-gnu-gcc-nm File 66.52 KB 0755
aarch64-linux-gnu-gcc-nm-14 File 66.52 KB 0755
aarch64-linux-gnu-gcc-ranlib File 66.52 KB 0755
aarch64-linux-gnu-gcc-ranlib-14 File 66.52 KB 0755
aarch64-linux-gnu-gcov File 516 KB 0755
aarch64-linux-gnu-gcov-14 File 516 KB 0755
aarch64-linux-gnu-gcov-dump File 387.93 KB 0755
aarch64-linux-gnu-gcov-dump-14 File 387.93 KB 0755
aarch64-linux-gnu-gcov-tool File 452.03 KB 0755
aarch64-linux-gnu-gcov-tool-14 File 452.03 KB 0755
aarch64-linux-gnu-gprof File 132.26 KB 0755
aarch64-linux-gnu-ld File 2.38 MB 0755
aarch64-linux-gnu-ld.bfd File 2.38 MB 0755
aarch64-linux-gnu-lto-dump File 28.02 MB 0755
aarch64-linux-gnu-lto-dump-14 File 28.02 MB 0755
aarch64-linux-gnu-nm File 67.93 KB 0755
aarch64-linux-gnu-objcopy File 199.7 KB 0755
aarch64-linux-gnu-objdump File 394.74 KB 0755
aarch64-linux-gnu-pkg-config File 67.96 KB 0755
aarch64-linux-gnu-pkgconf File 67.96 KB 0755
aarch64-linux-gnu-python3-config File 3.07 KB 0755
aarch64-linux-gnu-python3.13-config File 3.07 KB 0755
aarch64-linux-gnu-ranlib File 67.09 KB 0755
aarch64-linux-gnu-readelf File 779.66 KB 0755
aarch64-linux-gnu-run File 3.07 MB 0755
aarch64-linux-gnu-size File 66.8 KB 0755
aarch64-linux-gnu-strings File 66.93 KB 0755
aarch64-linux-gnu-strip File 199.71 KB 0755
ab File 66.31 KB 0755
ack File 73.99 KB 0755
aconnect File 66.24 KB 0755
acyclic File 66.44 KB 0755
addr2line File 67.08 KB 0755
agnostics File 67.13 KB 0755
airscan-discover File 195.26 KB 0755
alsabat File 66.29 KB 0755
alsaloop File 131.18 KB 0755
alsamixer File 132.1 KB 0755
alsatplg File 130.24 KB 0755
alsaucm File 66.69 KB 0755
amidi File 66.25 KB 0755
amixer File 66.3 KB 0755
aplay File 130.29 KB 0755
aplaymidi File 66.24 KB 0755
aplaymidi2 File 66.25 KB 0755
apropos File 67.12 KB 0755
apt File 66.24 KB 0755
apt-cache File 130.38 KB 0755
apt-cdrom File 66.32 KB 0755
apt-config File 66.24 KB 0755
apt-extracttemplates File 66.32 KB 0755
apt-ftparchive File 258.33 KB 0755
apt-get File 66.32 KB 0755
apt-listchanges File 230 B 0755
apt-mark File 66.32 KB 0755
apt-sortpkgs File 66.25 KB 0755
ar File 67.09 KB 0755
arch File 66.46 KB 0755
arecord File 130.29 KB 0755
arecordmidi File 66.26 KB 0755
arecordmidi2 File 66.27 KB 0755
aria_chk File 5.52 MB 0755
aria_dump_log File 5.33 MB 0755
aria_ftdump File 5.33 MB 0755
aria_pack File 5.4 MB 0755
aria_read_log File 5.52 MB 0755
ark File 259.2 KB 0755
arpaname File 66.16 KB 0755
arping File 66.63 KB 0755
as File 454.99 KB 0755
aseqdump File 66.24 KB 0755
aseqnet File 66.28 KB 0755
aseqsend File 66.24 KB 0755
aspell File 194.37 KB 0755
aspell-import File 2 KB 0755
attr File 66.16 KB 0755
autogsdoc File 453.64 KB 0755
autotouch File 1.28 KB 0755
awk File 776.39 KB 0755
axfer File 130.34 KB 0755
b2sum File 66.46 KB 0755
base32 File 66.45 KB 0755
base64 File 66.45 KB 0755
basename File 66.45 KB 0755
basenc File 66.45 KB 0755
bash File 1.35 MB 0755
bashbug File 6.8 KB 0755
bc File 130.68 KB 0755
bcomps File 66.58 KB 0755
bdftopcf File 66.6 KB 0755
bdftruncate File 66.41 KB 0755
bluemoon File 66.23 KB 0755
bluetoothctl File 654.75 KB 0755
breeze-settings6 File 66.25 KB 0755
btattach File 66.23 KB 0755
btfdiff File 1.29 KB 0755
btmgmt File 194.34 KB 0755
btmon File 1.07 MB 0755
bunzip2 File 66.23 KB 0755
busctl File 130.46 KB 0755
busybox File 898.71 KB 0755
bwrap File 130.3 KB 0755
bzcat File 66.23 KB 0755
bzcmp File 2.17 KB 0755
bzdiff File 2.17 KB 0755
bzegrep File 3.69 KB 0755
bzexe File 4.78 KB 0755
bzfgrep File 3.69 KB 0755
bzgrep File 3.69 KB 0755
bzip2 File 66.23 KB 0755
bzip2recover File 66.16 KB 0755
bzless File 1.27 KB 0755
bzmore File 1.27 KB 0755
c++ File 1.07 MB 0755
c++filt File 66.47 KB 0755
c89 File 428 B 0755
c89-gcc File 428 B 0755
c99 File 454 B 0755
c99-gcc File 454 B 0755
c_rehash File 6.76 KB 0755
camera-bug-report File 5.37 KB 0755
cancel File 66.16 KB 0755
cancel-rename File 2.14 KB 0755
captoinfo File 130.28 KB 0755
cat File 66.49 KB 0755
catdoc File 67.76 KB 0755
catman File 66.6 KB 0755
catppt File 67.23 KB 0755
cc File 1.07 MB 0755
ccomps File 66.68 KB 0755
cct File 66.34 KB 0755
cd-create-profile File 66.16 KB 0755
cd-fix-profile File 66.16 KB 0755
cd-iccdump File 66.16 KB 0755
cd-it8 File 66.16 KB 0755
cec-compliance File 324.31 KB 0755
cec-ctl File 393.61 KB 0755
cec-follower File 194.93 KB 0755
certbot File 959 B 0755
certtool File 259.34 KB 0755
cgi-fcgi File 66.02 KB 0755
chacl File 66.16 KB 0755
chage File 138.9 KB 2755
chardet File 221 B 0755
chardetect File 221 B 0755
chattr File 66.17 KB 0755
chcon File 130.45 KB 0755
check-language-support File 2.71 KB 0755
checkgid File 66.17 KB 0755
chfn File 69.1 KB 4755
chgrp File 130.46 KB 0755
chmod File 66.46 KB 0755
choom File 130.32 KB 0755
chown File 130.46 KB 0755
chromium File 5.78 KB 0755
chrt File 130.32 KB 0755
chsh File 67.6 KB 4755
chvt File 66.66 KB 0755
cifscreds File 66.52 KB 0755
ciptool File 66.32 KB 0755
circo File 66.43 KB 0755
ckbcomp File 147.15 KB 0755
cksum File 130.48 KB 0755
classes File 67.95 KB 0755
clear File 66.17 KB 0755
clear_console File 66.09 KB 0755
cloud-id File 967 B 0755
cloud-init File 971 B 0755
cloud-init-per File 2.06 KB 0755
cluster File 600.55 KB 0755
cmp File 66.91 KB 0755
cmstart File 84 B 0755
codepage File 66.29 KB 0755
codiff File 194.8 KB 0755
col File 66.32 KB 0755
colcrt File 66.32 KB 0755
colormgr File 66.2 KB 0755
colrm File 66.32 KB 0755
column File 66.32 KB 0755
comm File 66.47 KB 0755
compose File 18.57 KB 0755
con2fbmap File 66.01 KB 0755
convert-dtsv0 File 66.27 KB 0755
corelist File 15.01 KB 0755
cp File 194.48 KB 0755
cpan File 8.16 KB 0755
cpan5.40-aarch64-linux-gnu File 8.19 KB 0755
cpio File 198.73 KB 0755
cpp File 1.07 MB 0755
cpp-14 File 1.07 MB 0755
create_xauth File 104 B 0755
crontab File 66.59 KB 2755
cs2cs File 66.27 KB 0755
csplit File 66.46 KB 0755
ctracer File 194.76 KB 0755
ctstat File 66.59 KB 0755
cupstestppd File 66.24 KB 0755
curl File 322.34 KB 0755
cut File 66.46 KB 0755
cvlc File 45 B 0755
cvtenc File 68.46 KB 0755
cvtsudoers File 397.23 KB 0755
cx18-ctl File 66.47 KB 0755
danetool File 195.34 KB 0755
dash File 194.59 KB 0755
date File 130.46 KB 0755
dbilogstrip File 1.35 KB 0755
dbiprof File 6.06 KB 0755
dbiproxy File 5.27 KB 0755
dbus-cleanup-sockets File 66.16 KB 0755
dbus-daemon File 258.48 KB 0755
dbus-launch File 66.01 KB 0755
dbus-monitor File 66.16 KB 0755
dbus-run-session File 66.16 KB 0755
dbus-send File 66.16 KB 0755
dbus-update-activation-environment File 66.16 KB 0755
dbus-uuidgen File 66.16 KB 0755
dbwrap_tool File 66.38 KB 0755
dconf File 66.09 KB 0755
dd File 130.5 KB 0755
ddcmon File 12.75 KB 0755
deallocvt File 66.62 KB 0755
deb-systemd-helper File 23.79 KB 0755
deb-systemd-invoke File 6.97 KB 0755
debconf File 2.8 KB 0755
debconf-apt-progress File 11.57 KB 0755
debconf-communicate File 623 B 0755
debconf-copydb File 1.68 KB 0755
debconf-escape File 668 B 0755
debconf-get-selections File 1.72 KB 0755
debconf-getlang File 6.94 KB 0755
debconf-loadtemplate File 944 B 0755
debconf-mergetemplate File 5.09 KB 0755
debconf-set-selections File 3.14 KB 0755
debconf-show File 1.78 KB 0755
debugapp File 985 B 0755
decode-dimms File 106.79 KB 0755
decode-edid File 5.24 KB 0755
decode-vaio File 6.15 KB 0755
decode_tm6000 File 66.52 KB 0755
defaults File 68.82 KB 0755
delaunay File 67.3 KB 0755
delv File 69.15 KB 0755
desktop-file-edit File 132.33 KB 0755
desktop-file-install File 132.33 KB 0755
desktop-file-validate File 132.6 KB 0755
devdump File 199.98 KB 0755
df File 130.94 KB 0755
dh_bash-completion File 4.42 KB 0755
dh_installxmlcatalogs File 9.22 KB 0755
dh_numpy3 File 3.51 KB 0755
dh_perl_dbi File 1.17 KB 0755
diff File 195.52 KB 0755
diff3 File 131.05 KB 0755
diffimg File 66.45 KB 0755
dig File 194.72 KB 0755
dijkstra File 66.61 KB 0755
dir File 194.9 KB 0755
dircolors File 66.46 KB 0755
dirmngr File 646.59 KB 0755
dirmngr-client File 130.75 KB 0755
dirname File 66.45 KB 0755
dirsplit File 16.74 KB 0755
dm-tool File 66.16 KB 0755
dmesg File 132.63 KB 0755
dmypy File 234 B 0755
dnsdomainname File 66.09 KB 0755
dnssec-cds File 67.13 KB 0755
dnssec-dsfromkey File 66.25 KB 0755
dnssec-importkey File 66.24 KB 0755
dnssec-keyfromlabel File 66.26 KB 0755
dnssec-keygen File 66.26 KB 0755
dnssec-ksr File 66.26 KB 0755
dnssec-revoke File 66.25 KB 0755
dnssec-settime File 66.25 KB 0755
dnssec-signzone File 130.29 KB 0755
dnssec-verify File 66.26 KB 0755
dnstap-read File 66.19 KB 0755
docutils File 216 B 0755
domainname File 66.09 KB 0755
dos2unix File 74.17 KB 0755
dot File 66.43 KB 0755
dot2gxl File 67.05 KB 0755
dot_builtins File 66.54 KB 0755
dotty File 2.04 KB 0755
dpkg File 386.9 KB 0755
dpkg-architecture File 14.84 KB 0755
dpkg-buildapi File 1.79 KB 0755
dpkg-buildflags File 8.14 KB 0755
dpkg-buildpackage File 30.32 KB 0755
dpkg-buildtree File 2.12 KB 0755
dpkg-checkbuilddeps File 7.45 KB 0755
dpkg-deb File 194.59 KB 0755
dpkg-distaddfile File 2.72 KB 0755
dpkg-divert File 194.67 KB 0755
dpkg-genbuildinfo File 18.69 KB 0755
dpkg-genchanges File 17.51 KB 0755
dpkg-gencontrol File 14.62 KB 0755
dpkg-gensymbols File 10.66 KB 0755
dpkg-maintscript-helper File 20.63 KB 0755
dpkg-mergechangelogs File 8.7 KB 0755
dpkg-name File 6.58 KB 0755
dpkg-parsechangelog File 4.83 KB 0755
dpkg-query File 194.66 KB 0755
dpkg-realpath File 66.32 KB 0755
dpkg-scanpackages File 8.45 KB 0755
dpkg-scansources File 9.15 KB 0755
dpkg-shlibdeps File 32.59 KB 0755
dpkg-source File 23.18 KB 0755
dpkg-split File 194.44 KB 0755
dpkg-statoverride File 130.47 KB 0755
dpkg-trigger File 130.45 KB 0755
dpkg-vendor File 3.18 KB 0755
driverless File 66.18 KB 0755
driverless-fax File 537 B 0755
dtagnames File 194.74 KB 0755
dtc File 199.87 KB 0755
dtdiff File 680 B 0755
dtmerge File 66.5 KB 0755
dtoverlay File 66.98 KB 0755
dtparam File 66.98 KB 0755
du File 130.47 KB 0755
dump_xsettings File 66.35 KB 0755
dumpkeys File 195.07 KB 0755
dumpmscat File 66.16 KB 0755
dvdauthor File 195.68 KB 0755
dvddirdel File 876 B 0755
dvdunauthor File 130.25 KB 0755
dvgrab File 386.18 KB 0755
dvipdf File 1007 B 0755
eatmydata File 2.74 KB 0755
ec2metadata File 8.38 KB 0755
echo File 66.45 KB 0755
ed File 66.41 KB 0755
edgepaint File 472.24 KB 0755
edit File 18.57 KB 0755
editor File 324.81 KB 0755
eepdump File 66.5 KB 0755
eepflash.sh File 4.31 KB 0755
eepmake File 66.46 KB 0755
egrep File 41 B 0755
eject File 130.16 KB 0755
elfedit File 66.98 KB 0755
enc2xs File 40.97 KB 0755
encguess File 2.99 KB 0755
enchant-2 File 66.16 KB 0755
enchant-lsmod-2 File 66.16 KB 0755
env File 66.86 KB 0755
envsubst File 66.25 KB 0755
eom File 514.24 KB 0755
eps2eps File 639 B 0755
eqn File 265.28 KB 0755
evince File 515.63 KB 0755
evince-previewer File 66.62 KB 0755
evince-thumbnailer File 66.25 KB 0755
ex File 1.79 MB 0755
expand File 66.47 KB 0755
expiry File 66.45 KB 2755
expr File 66.45 KB 0755
f2py File 216 B 0755
f2py3 File 216 B 0755
f2py3.13 File 249 B 0755
faad File 68.05 KB 0755
factor File 130.46 KB 0755
faked-sysv File 66.74 KB 0755
faked-tcp File 66.78 KB 0755
fakeroot File 3.91 KB 0755
fakeroot-sysv File 3.91 KB 0755
fakeroot-tcp File 3.9 KB 0755
fallocate File 66.32 KB 0755
false File 66.45 KB 0755
fastfetch File 1.51 MB 0755
fbcli File 66.24 KB 0755
fbd-theme-validate File 194.24 KB 0755
fbset File 66.16 KB 0755
fbtest File 66.25 KB 0755
fc-cache File 66.24 KB 0755
fc-cat File 66.24 KB 0755
fc-conflist File 66.24 KB 0755
fc-list File 66.24 KB 0755
fc-match File 66.24 KB 0755
fc-pattern File 66.24 KB 0755
fc-query File 66.24 KB 0755
fc-scan File 66.24 KB 0755
fc-validate File 66.24 KB 0755
fcgistarter File 66.17 KB 0755
fdp File 66.43 KB 0755
fdtdump File 66.25 KB 0755
fdtget File 66.25 KB 0755
fdtoverlay File 66.25 KB 0755
fdtput File 66.25 KB 0755
ffmpeg File 386.45 KB 0755
ffplay File 194.62 KB 0755
ffprobe File 265.73 KB 0755
fgconsole File 66.64 KB 0755
fgrep File 41 B 0755
filan File 131.97 KB 0755
file File 66.48 KB 0755
file2brl File 66.09 KB 0755
filezilla File 4.38 MB 0755
find File 259.49 KB 0755
findmnt File 131.82 KB 0755
fio File 1.82 MB 0755
fio-btrace2fio File 66.23 KB 0755
fio-dedupe File 66.32 KB 0755
fio-genzipf File 66.28 KB 0755
fio-verify-state File 66.16 KB 0755
fio2gnuplot File 21.73 KB 0755
fio_generate_plots File 4.09 KB 0755
fio_jsonplus_clat2csv File 12.92 KB 0755
firefox File 848 B 0755
flock File 66.38 KB 0755
fmt File 66.45 KB 0755
fold File 66.45 KB 0755
fonttosfnt File 66.62 KB 0755
foomatic-rip File 143.23 KB 0755
free File 66.23 KB 0755
fsnotifywait File 66.24 KB 0755
fsnotifywatch File 66.24 KB 0755
fullcircle File 1.39 KB 0755
funzip File 66.43 KB 0755
fuser File 67.7 KB 0755
fusermount File 66.24 KB 4755
fusermount3 File 66.24 KB 4755
fzputtygen File 322.09 KB 0755
fzsftp File 706.54 KB 0755
g++ File 1.07 MB 0755
g++-14 File 1.07 MB 0755
galculator File 200.4 KB 0755
galera_new_cluster File 922 B 0755
galera_recovery File 3.29 KB 0755
gamma4scanimage File 66.16 KB 0755
gapplication File 66.24 KB 0755
gatttool File 130.34 KB 0755
gawk File 776.39 KB 0755
gawkbug File 6.64 KB 0755
gc File 66.51 KB 0755
gcc File 1.07 MB 0755
gcc-14 File 1.07 MB 0755
gcc-ar File 66.52 KB 0755
gcc-ar-14 File 66.52 KB 0755
gcc-nm File 66.52 KB 0755
gcc-nm-14 File 66.52 KB 0755
gcc-ranlib File 66.52 KB 0755
gcc-ranlib-14 File 66.52 KB 0755
gcore File 3.62 KB 0755
gcov File 516 KB 0755
gcov-14 File 516 KB 0755
gcov-dump File 387.93 KB 0755
gcov-dump-14 File 387.93 KB 0755
gcov-tool File 452.03 KB 0755
gcov-tool-14 File 452.03 KB 0755
gcr-viewer File 66.23 KB 0755
gcr-viewer-gtk4 File 66.23 KB 0755
gdb File 11.51 MB 0755
gdb-add-index File 4.55 KB 0755
gdbtui File 126 B 0755
gdbus File 66.25 KB 0755
gdk-pixbuf-csource File 66.2 KB 0755
gdk-pixbuf-pixdata File 66.18 KB 0755
gdk-pixbuf-thumbnailer File 66.26 KB 0755
gdm-control File 66.16 KB 0755
gdnc File 73.79 KB 0755
gdomap File 66.02 KB 0755
geany File 66.27 KB 0755
gencat File 66.23 KB 0755
genfio File 8.63 KB 0755
genisoimage File 665.81 KB 0755
geod File 66.18 KB 0755
geoiplookup File 66.16 KB 0755
geoiplookup6 File 66.16 KB 0755
geqn File 265.28 KB 0755
get-edid File 66.23 KB 0755
getcifsacl File 66.16 KB 0755
getconf File 66.16 KB 0755
geteltorito File 6.06 KB 0755
getent File 66.49 KB 0755
getfacl File 66.28 KB 0755
getfattr File 66.25 KB 0755
getkeycodes File 66.59 KB 0755
getopt File 66.32 KB 0755
gettext File 66.25 KB 0755
gettext.sh File 5.05 KB 0755
ghb File 3.16 MB 0755
ghostscript File 66.22 KB 0755
gie File 66.29 KB 0755
gio File 130.29 KB 0755
gio-querymodules File 66.17 KB 0755
git File 3.89 MB 0755
git-receive-pack File 3.89 MB 0755
git-shell File 2.22 MB 0755
git-upload-archive File 3.89 MB 0755
git-upload-pack File 3.89 MB 0755
glib-compile-schemas File 66.4 KB 0755
gmake File 327.8 KB 0755
gml2gv File 66.88 KB 0755
gnome-keyring File 66.38 KB 0755
gnome-keyring-3 File 66.38 KB 0755
gnome-keyring-daemon File 1.2 MB 0755
gnome-www-browser File 5.78 KB 0755
gnutls-cli File 202.79 KB 0755
gnutls-cli-debug File 194.77 KB 0755
gnutls-serv File 130.25 KB 0755
gp-archive File 67.11 KB 0755
gp-collect-app File 67.15 KB 0755
gp-display-html File 630.35 KB 0755
gp-display-src File 66.7 KB 0755
gp-display-text File 197.34 KB 0755
gpasswd File 134.27 KB 4755
gpg File 1.21 MB 0755
gpg-agent File 453.38 KB 0755
gpg-connect-agent File 195.16 KB 0755
gpg-mail-tube File 130.73 KB 0755
gpg-wks-client File 259.26 KB 0755
gpgconf File 199.4 KB 0755
gpgparsemail File 66.24 KB 0755
gpgsm File 649.3 KB 0755
gpgsplit File 130.48 KB 0755
gpgtar File 131.69 KB 0755
gpgv File 580.24 KB 0755
gpic File 260.19 KB 0755
gpiodetect File 66.23 KB 0755
gpioget File 66.23 KB 0755
gpioinfo File 66.23 KB 0755
gpiomon File 66.16 KB 0755
gpionotify File 66.16 KB 0755
gpioset File 66.23 KB 0755
gprof File 132.26 KB 0755
gprofng File 66.49 KB 0755
gprofng-archive File 67.11 KB 0755
gprofng-collect-app File 67.15 KB 0755
gprofng-display-html File 630.35 KB 0755
gprofng-display-src File 66.7 KB 0755
gprofng-display-text File 197.34 KB 0755
graphml2gv File 66.74 KB 0755
grep File 194.3 KB 0755
gresource File 66.17 KB 0755
grim File 66.23 KB 0755
groff File 137.39 KB 0755
grog File 18.75 KB 0755
grops File 201.78 KB 0755
grotty File 201.39 KB 0755
groups File 66.45 KB 0755
growpart File 29.19 KB 0755
gs File 66.22 KB 0755
gsbj File 350 B 0755
gsdj File 352 B 0755
gsdj500 File 352 B 0755
gsettings File 66.17 KB 0755
gslj File 353 B 0755
gslp File 350 B 0755
gsnd File 277 B 0755
gspath File 66.92 KB 0755
gstack File 2.97 KB 0755
gtbl File 194.37 KB 0755
gtf File 66.38 KB 0755
gtk-update-icon-cache File 66.4 KB 0755
gtk4-update-icon-cache File 66.4 KB 0755
gts-config File 2.69 KB 0755
gts2dxf File 66.41 KB 0755
gts2oogl File 67.61 KB 0755
gts2stl File 66.54 KB 0755
gts2xyz File 66.38 KB 0755
gtscheck File 66.49 KB 0755
gtscompare File 66.92 KB 0755
gtstemplate File 5.97 KB 0755
gui-pkinst File 66.48 KB 0755
gui-runcmd File 66.95 KB 0755
gui-updater File 66.53 KB 0755
gunzip File 2.28 KB 0755
gv2gml File 66.55 KB 0755
gv2gxl File 67.05 KB 0755
gvcolor File 76.77 KB 0755
gvgen File 66.38 KB 0755
gvmap File 600.56 KB 0755
gvmap.sh File 2.13 KB 0755
gvpack File 66.94 KB 0755
gvpr File 66.28 KB 0755
gxl2dot File 67.05 KB 0755
gxl2gv File 67.05 KB 0755
gzexe File 6.32 KB 0755
gzip File 131.66 KB 0755
h2ph File 28.15 KB 0755
h2xs File 59.51 KB 0755
handbrake File 3.16 MB 0755
handbrake-gtk File 3.16 MB 0755
hardlink File 66.4 KB 0755
hciattach File 68.3 KB 0755
hciconfig File 194.56 KB 0755
hcitool File 197.91 KB 0755
hd File 66.33 KB 0755
head File 66.46 KB 0755
helpztags File 2.46 KB 0755
hex2hcd File 66.23 KB 0755
hexdump File 66.33 KB 0755
host File 130.73 KB 0755
hostid File 66.45 KB 0755
hostname File 66.09 KB 0755
hostnamectl File 66.32 KB 0755
hp-align File 9.14 KB 0755
hp-check File 39.2 KB 0755
hp-clean File 7.05 KB 0755
hp-colorcal File 9.08 KB 0755
hp-config_usb_printer File 6.98 KB 0755
hp-doctor File 12.69 KB 0755
hp-firmware File 6.47 KB 0755
hp-info File 6.26 KB 0755
hp-levels File 6.85 KB 0755
hp-logcapture File 12.15 KB 0755
hp-makeuri File 5.6 KB 0755
hp-pkservice File 3.13 KB 0755
hp-plugin File 13.62 KB 0755
hp-probe File 7.98 KB 0755
hp-query File 4.94 KB 0755
hp-scan File 86.9 KB 0755
hp-setup File 37.25 KB 0755
hp-testpage File 5.98 KB 0755
hp-timedate File 3.31 KB 0755
htcacheclean File 66.18 KB 0755
htdbm File 66.17 KB 0755
htdigest File 66.17 KB 0755
htop File 390.13 KB 0755
htpasswd File 66.17 KB 0755
httpx File 204 B 0755
iceauth File 66.73 KB 0755
iconv File 66.27 KB 0755
id File 66.46 KB 0755
iecset File 66.24 KB 0755
infocmp File 66.24 KB 0755
infotocap File 130.28 KB 0755
innochecksum File 4.64 MB 0755
innotop File 445.72 KB 0755
inotifywait File 66.24 KB 0755
inotifywatch File 66.24 KB 0755
install File 194.5 KB 0755
instmodsh File 4.27 KB 0755
invgeod File 66.18 KB 0755
invproj File 66.27 KB 0755
ionice File 66.32 KB 0755
ip File 731.48 KB 0755
ipa_verify File 66.26 KB 0755
ipcmk File 66.39 KB 0755
ipcrm File 130.32 KB 0755
ipcs File 130.32 KB 0755
ippfind File 66.26 KB 0755
ipptool File 130.17 KB 0755
ir-ctl File 66.26 KB 0755
ischroot File 66.32 KB 0755
isodump File 199.98 KB 0755
isoinfo File 406.59 KB 0755
isovfy File 199.95 KB 0755
ispell-wrapper File 7.05 KB 0755
ivtv-ctl File 66.54 KB 0755
join File 66.5 KB 0755
journalctl File 131.05 KB 0755
json-patch-jsondiff File 1004 B 0755
json_pp File 4.9 KB 0755
jsondiff File 1004 B 0755
jsonpatch File 3.77 KB 0755
jsonpointer File 1.79 KB 0755
jsonschema File 213 B 0755
kanshi File 66.18 KB 0755
kbd_mode File 66.77 KB 0755
kbdinfo File 66.62 KB 0755
kbookmarkmerger File 66.26 KB 0755
kbuildsycoca6 File 66.1 KB 0755
kbxutil File 194.7 KB 0755
kcmshell6 File 66.55 KB 0755
kcursorgen File 66.25 KB 0755
kde-geo-uri-handler File 66.1 KB 0755
kdeconnect-app File 386.98 KB 0755
kdeconnect-cli File 392.45 KB 0755
kdeconnect-handler File 392.56 KB 0755
kdeconnect-indicator File 392.78 KB 0755
kdeconnect-settings File 66.25 KB 0755
kdeconnect-sms File 779.31 KB 0755
kdeconnectd File 66.44 KB 0755
kded6 File 130.72 KB 0755
kdenlive File 11.61 MB 0755
kdenlive_render File 130.55 KB 0755
kdtc File 5.6 KB 0755
keditbookmarks File 454.16 KB 0755
kernel-install File 66.59 KB 0755
keyctl File 66.3 KB 0755
kiconfinder5 File 66.18 KB 0755
kiconfinder6 File 66.27 KB 0755
kill File 66.23 KB 0755
killall File 67.9 KB 0755
kmod File 194.29 KB 0755
kmsblank File 66.33 KB 0755
kmsprint File 66.36 KB 0755
kmstest File 259.42 KB 0755
kpackagetool6 File 130.39 KB 0755
kquitapp6 File 66.1 KB 0755
kreadconfig5 File 66.17 KB 0755
kreadconfig6 File 66.26 KB 0755
ktelnetservice6 File 66.25 KB 0755
ktrash6 File 66.25 KB 0755
kwallet-query File 66.44 KB 0755
kwalletd6 File 581.92 KB 0755
kwriteconfig5 File 66.17 KB 0755
kwriteconfig6 File 66.26 KB 0755
l2ping File 66.17 KB 0755
l2test File 66.48 KB 0755
lab-sensible-terminal File 837 B 0755
labnag File 66.76 KB 0755
labwc File 579.05 KB 0755
labwc-pi File 391 B 0755
lame File 130.26 KB 0755
laptop-detect File 3.74 KB 0755
ld File 2.38 MB 0755
ld.bfd File 2.38 MB 0755
ld.so File 196.63 KB 0755
ldd File 5.19 KB 0755
lefty File 339.02 KB 0755
less File 275.29 KB 0755
lessecho File 66.18 KB 0755
lessfile File 8.83 KB 0755
lesskey File 66.25 KB 0755
lesspipe File 8.83 KB 0755
letsencrypt File 959 B 0755
lexgrog File 131.36 KB 0755
libcamera-bug-report File 2.96 KB 0755
libcamerify File 844 B 0755
libinput File 67.58 KB 0755
libnetcfg File 15.41 KB 0755
link File 66.45 KB 0755
linux-check-removal File 4.6 KB 0755
linux-run-hooks File 3.52 KB 0755
linux-update-symlinks File 6.38 KB 0755
linux-version File 2.67 KB 0755
linux32 File 130.58 KB 0755
linux64 File 130.58 KB 0755
ln File 130.47 KB 0755
lneato File 1.51 KB 0755
lnstat File 66.59 KB 0755
loadkeys File 259.52 KB 0755
loadunimap File 66.96 KB 0755
locale File 73.41 KB 0755
localectl File 66.3 KB 0755
localedef File 331.2 KB 0755
logger File 66.88 KB 0755
logilab-pytest File 134 B 0755
login File 130.43 KB 0755
loginctl File 66.51 KB 0755
logname File 66.45 KB 0755
logresolve File 66.18 KB 0755
look File 66.32 KB 0755
lowntfs-3g File 130.84 KB 0755
lp File 66.16 KB 0755
lp-connection-editor File 777.7 KB 0755
lpoptions File 66.24 KB 0755
lpstat File 66.45 KB 0755
ls File 194.9 KB 0755
lsar File 3.02 MB 0755
lsattr File 66.17 KB 0755
lsb_release File 2.77 KB 0755
lsblk File 258.32 KB 0755
lscpu File 194.32 KB 0755
lsinitramfs File 735 B 0755
lsipc File 130.32 KB 0755
lslocks File 130.73 KB 0755
lslogins File 130.34 KB 0755
lsmem File 130.32 KB 0755
lsmod File 194.29 KB 0755
lsns File 130.32 KB 0755
lsof File 195.9 KB 0755
lspci File 132.04 KB 0755
lspgpot File 1.06 KB 0755
lsusb File 258.27 KB 0755
lto-dump File 28.02 MB 0755
lto-dump-14 File 28.02 MB 0755
lua File 259.18 KB 0755
lua5.1 File 259.18 KB 0755
luac File 194.68 KB 0755
luac5.1 File 194.68 KB 0755
luajit File 578.95 KB 0755
lwrespawn File 135 B 0755
lxclipboard File 66.24 KB 0755
lxpanel-pi File 329.37 KB 0755
lxpanelctl-pi File 66.41 KB 0755
lxpolkit File 66.09 KB 0755
lxsession File 322.32 KB 0755
lxsession-db File 66.24 KB 0755
lxsession-default File 9 KB 0755
lxsession-default-terminal File 1019 B 0755
lxsession-logout File 66.24 KB 0755
lxsession-xdg-autostart File 66.24 KB 0755
lxtask File 66.01 KB 0755
lxterminal File 133.7 KB 0755
lynx File 1.98 MB 0755
lzcat File 130.76 KB 0755
lzcmp File 7.41 KB 0755
lzdiff File 7.41 KB 0755
lzegrep File 10.17 KB 0755
lzfgrep File 10.17 KB 0755
lzgrep File 10.17 KB 0755
lzless File 2.33 KB 0755
lzma File 130.76 KB 0755
lzmainfo File 66.24 KB 0755
lzmore File 2.18 KB 0755
mac2unix File 74.17 KB 0755
make File 327.8 KB 0755
make-first-existing-target File 4.79 KB 0755
make_strings File 75.09 KB 0755
man File 133.25 KB 0755
man-recode File 67.23 KB 0755
mandb File 195.51 KB 0755
manpath File 66.63 KB 0755
mapscrn File 66.97 KB 0755
mariadb File 5.18 MB 0755
mariadb-access File 109.46 KB 0755
mariadb-admin File 4.9 MB 0755
mariadb-analyze File 4.9 MB 0755
mariadb-binlog File 5.15 MB 0755
mariadb-check File 4.9 MB 0755
mariadb-conv File 4.64 MB 0755
mariadb-convert-table-format File 4.28 KB 0755
mariadb-dump File 5.03 MB 0755
mariadb-dumpslow File 8.19 KB 0755
mariadb-find-rows File 3.35 KB 0755
mariadb-fix-extensions File 1.31 KB 0755
mariadb-hotcopy File 34.67 KB 0755
mariadb-import File 5.02 MB 0755
mariadb-install-db File 22.35 KB 0755
mariadb-optimize File 4.9 MB 0755
mariadb-plugin File 4.64 MB 0755
mariadb-repair File 4.9 MB 0755
mariadb-report File 49.02 KB 0755
mariadb-secure-installation File 14.06 KB 0755
mariadb-service-convert File 2.45 KB 0755
mariadb-setpermission File 17.7 KB 0755
mariadb-show File 4.9 MB 0755
mariadb-slap File 4.9 MB 0755
mariadb-tzinfo-to-sql File 4.58 MB 0755
mariadb-upgrade File 5.02 MB 0755
mariadb-waitpid File 4.57 MB 0755
mariadbcheck File 4.9 MB 0755
mariadbd-multi File 26.83 KB 0755
mariadbd-safe File 30.59 KB 0755
mariadbd-safe-helper File 4.57 MB 0755
markdown-it File 221 B 0755
markdown_py File 215 B 0755
mate-polkit File 61 B 0755
mawk File 194.59 KB 0755
mcookie File 66.39 KB 0755
md5sum File 66.46 KB 0755
mdig File 66.27 KB 0755
media-ctl File 66.95 KB 0755
mediainfo File 130.72 KB 0755
melt File 66.01 KB 0755
melt-7 File 66.01 KB 0755
mencoder File 2.63 MB 0755
mesa-overlay-control.py File 5.59 KB 0755
mesa-screenshot-control.py File 5.98 KB 0755
meson File 903 B 0755
migrate-pubring-from-classic-gpg File 3 KB 0755
mingle File 472.55 KB 0755
mk_modmap File 15.78 KB 0755
mkdir File 130.45 KB 0755
mkfifo File 130.45 KB 0755
mkfontdir File 65 B 0755
mkfontscale File 67.24 KB 0755
mkisofs File 665.81 KB 0755
mknod File 130.45 KB 0755
mktemp File 66.45 KB 0755
mkvextract File 3.89 MB 0755
mkvinfo File 2.82 MB 0755
mkvmerge File 6.64 MB 0755
mkvpropedit File 3.38 MB 0755
mkzftree File 66.75 KB 0755
mm2gv File 130.84 KB 0755
modeline2fb File 4.31 KB 0755
more File 66.32 KB 0755
mount File 130.31 KB 4755
mountpoint File 66.31 KB 0755
mousepad File 66.16 KB 0755
mpeg2desc File 66.26 KB 0755
mplayer File 3.07 MB 0755
mpris-proxy File 130.43 KB 0755
msql2mysql File 1.41 KB 0755
mt File 131.48 KB 0755
mt-gnu File 131.48 KB 0755
mv File 194.48 KB 0755
mvxattr File 66.16 KB 0755
my_print_defaults File 4.58 MB 0755
myisam_ftdump File 4.89 MB 0755
myisamchk File 5.02 MB 0755
myisamlog File 4.89 MB 0755
myisampack File 4.96 MB 0755
mypy File 230 B 0755
mypyc File 213 B 0755
mysql File 5.18 MB 0755
mysql_install_db File 22.35 KB 0755
mysql_upgrade File 5.02 MB 0755
mysqladmin File 4.9 MB 0755
mysqld_safe File 30.59 KB 0755
mysqldump File 5.03 MB 0755
mytop File 72.03 KB 0755
named-checkconf File 66.23 KB 0755
named-checkzone File 66.24 KB 0755
named-compilezone File 66.24 KB 0755
named-journalprint File 66.16 KB 0755
named-nzd2nzf File 66.16 KB 0755
named-rrchecker File 66.16 KB 0755
namei File 66.32 KB 0755
nano File 324.81 KB 0755
nawk File 776.39 KB 0755
nc File 66.49 KB 0755
nc.openbsd File 66.49 KB 0755
ncdu File 130.15 KB 0755
neato File 66.43 KB 0755
neqn File 913 B 0755
net File 1.08 MB 0755
netcat File 66.49 KB 0755
netstat File 199.42 KB 0755
networkctl File 130.81 KB 0755
newgrp File 66.31 KB 4755
ngettext File 66.25 KB 0755
nhlt-dmic-info File 66.33 KB 0755
nice File 66.45 KB 0755
ninja File 323.64 KB 0755
nisdomainname File 66.09 KB 0755
nl File 66.55 KB 0755
nm File 67.93 KB 0755
nm-online File 66.16 KB 0755
nmblookup File 194.34 KB 0755
nmcli File 1.05 MB 0755
nmtui File 872.9 KB 0755
nmtui-connect File 872.9 KB 0755
nmtui-edit File 872.9 KB 0755
nmtui-hostname File 872.9 KB 0755
nohup File 66.45 KB 0755
nop File 66.41 KB 0755
normalizer File 227 B 0755
nproc File 66.45 KB 0755
nroff File 5.58 KB 0755
nsec3hash File 66.17 KB 0755
nsenter File 130.56 KB 0755
nslookup File 130.7 KB 0755
nstat File 146.43 KB 0755
nsupdate File 130.35 KB 0755
ntfs-3g File 194.88 KB 4755
ntfs-3g.probe File 66.23 KB 0755
ntfscat File 66.27 KB 0755
ntfscluster File 66.27 KB 0755
ntfscmp File 66.27 KB 0755
ntfsdecrypt File 66.28 KB 0755
ntfsfallocate File 66.27 KB 0755
ntfsfix File 66.37 KB 0755
ntfsinfo File 66.28 KB 0755
ntfsls File 67.32 KB 0755
ntfsmove File 66.27 KB 0755
ntfsrecover File 130.36 KB 0755
ntfssecaudit File 130.74 KB 0755
ntfstruncate File 66.2 KB 0755
ntfsusermap File 66.2 KB 0755
ntfswipe File 66.79 KB 0755
ntlm_auth File 130.23 KB 0755
numfmt File 130.51 KB 0755
numpy-config File 216 B 0755
nvlc File 47 B 0755
oLschema2ldif File 66.16 KB 0755
obamenu File 6.78 KB 0755
obexctl File 130.24 KB 0755
objcopy File 199.7 KB 0755
objdump File 394.74 KB 0755
obxprop File 66.16 KB 0755
ocsptool File 130.24 KB 0755
od File 130.47 KB 0755
ogg123 File 131.66 KB 0755
oggdec File 66.53 KB 0755
oggenc File 131.97 KB 0755
ogginfo File 66.26 KB 0755
open File 31.53 KB 0755
openapp File 10.69 KB 0755
openbox File 451.63 KB 0755
openbox-rpd File 76 B 0755
openbox-session File 595 B 0755
openocd File 4.16 MB 0755
openssl File 1.09 MB 0755
opentool File 5.71 KB 0755
openvt File 67.06 KB 0755
osage File 66.43 KB 0755
otpset File 5.79 KB 0755
overlaycheck File 29.76 KB 0755
ovmerge File 47.22 KB 0755
p11-kit File 258.52 KB 0755
p11tool File 387.66 KB 0755
p7zip File 4.64 KB 0755
pager File 275.29 KB 0755
pahole File 259.44 KB 0755
paper File 66.74 KB 0755
paperconf File 66.46 KB 0755
parse-edid File 73.81 KB 0755
partx File 194.32 KB 0755
passwd File 139.09 KB 4755
paste File 66.46 KB 0755
pastebinit File 18.19 KB 0755
patch File 195.45 KB 0755
patchwork File 66.43 KB 0755
pathchk File 66.45 KB 0755
pbget File 2.51 KB 0755
pbput File 2.51 KB 0755
pbputs File 2.51 KB 0755
pcilmr File 66.49 KB 0755
pcmanfm File 327.81 KB 0755
pcmanfm-pi File 145 B 0755
pcre2-config File 1.95 KB 0755
pdb3 File 88.79 KB 0755
pdb3.13 File 88.79 KB 0755
pdbedit File 66.16 KB 0755
pdf2dsc File 705 B 0755
pdf2ps File 909 B 0755
pdfattach File 66.24 KB 0755
pdfdetach File 66.32 KB 0755
pdffonts File 66.33 KB 0755
pdfimages File 66.33 KB 0755
pdfinfo File 66.34 KB 0755
pdfseparate File 66.24 KB 0755
pdfsig File 66.73 KB 0755
pdftocairo File 194.44 KB 0755
pdftohtml File 130.31 KB 0755
pdftoppm File 66.44 KB 0755
pdftops File 66.5 KB 0755
pdftotext File 66.34 KB 0755
pdfunite File 66.24 KB 0755
pdwtags File 194.88 KB 0755
pear File 793 B 0755
peardev File 814 B 0755
pecl File 727 B 0755
peekfd File 66.71 KB 0755
perl File 3.64 MB 0755
perl5.40-aarch64-linux-gnu File 66.37 KB 0755
perl5.40.1 File 3.64 MB 0755
perlbug File 44.52 KB 0755
perldoc File 125 B 0755
perlivp File 10.61 KB 0755
perlthanks File 44.52 KB 0755
perror File 4.79 MB 0755
pf2afm File 498 B 0755
pfbtopfa File 516 B 0755
pfunct File 194.82 KB 0755
pglobal File 194.88 KB 0755
pgrep File 66.32 KB 0755
pgzrun File 212 B 0755
phar File 14.88 KB 0755
phar.phar File 14.88 KB 0755
phar.phar8.4 File 14.88 KB 0755
phar8.4 File 14.88 KB 0755
phar8.4.phar File 14.88 KB 0755
php File 5.76 MB 0755
php8.4 File 5.76 MB 0755
pi-gpk-dbus-service File 196.63 KB 0755
pi-gpk-install-local-file File 131.27 KB 0755
pi-gpk-log File 131.62 KB 0755
pi-gpk-prefs File 131.59 KB 0755
pi-gpk-update-viewer File 196.95 KB 0755
pi-packages File 197.38 KB 0755
pic File 260.19 KB 0755
piclone File 66.88 KB 0755
pico File 324.81 KB 0755
piconv File 8.16 KB 0755
pidof File 66.29 KB 0755
pidwait File 66.32 KB 0755
pinctrl File 66.55 KB 0755
pinentry File 130.52 KB 0755
pinentry-curses File 130.52 KB 0755
pinentry-gnome3 File 130.52 KB 0755
pinentry-x11 File 130.52 KB 0755
ping File 208.45 KB 0755
ping4 File 208.45 KB 0755
ping6 File 208.45 KB 0755
pinky File 66.5 KB 0755
pinout File 960 B 0755
pintest File 962 B 0755
pip File 222 B 0755
pip3 File 222 B 0755
pipewire File 66.24 KB 0755
pipewire-aes67 File 66.24 KB 0755
pipewire-avb File 66.24 KB 0755
pipewire-pulse File 66.24 KB 0755
pishutdown File 66.65 KB 0755
piwiz File 131.8 KB 0755
pkaction File 66.23 KB 0755
pkcheck File 66.23 KB 0755
pkexec File 66.21 KB 4755
pkg-config File 67.96 KB 0755
pkgconf File 67.96 KB 0755
pkill File 66.32 KB 0755
pkttyagent File 66.23 KB 0755
pl File 67.5 KB 0755
pl2link File 68.54 KB 0755
pl2pm File 4.43 KB 0755
plasma-activities-cli6 File 66.17 KB 0755
play File 130.3 KB 0755
pldd File 66.15 KB 0755
pldes File 67.2 KB 0755
plget File 67.24 KB 0755
plmerge File 67.54 KB 0755
plog File 146 B 0755
plparse File 67.53 KB 0755
plser File 67.76 KB 0755
plutil File 71.54 KB 0755
plymouth File 66.79 KB 0755
pmap File 66.27 KB 0755
pod2html File 3.95 KB 0755
pod2man File 18.46 KB 0755
pod2text File 12.8 KB 0755
pod2usage File 4.01 KB 0755
podchecker File 3.64 KB 0755
poff File 2.77 KB 0755
pon File 1.33 KB 0755
ppdc File 130.38 KB 0755
ppdhtml File 130.38 KB 0755
ppdi File 130.38 KB 0755
ppdmerge File 66.24 KB 0755
ppdpo File 130.38 KB 0755
pphs File 404 B 0755
pprompt.sh File 336 B 0755
pr File 130.52 KB 0755
precat File 5.52 KB 0755
preconv File 66.37 KB 0755
prefcnt File 194.74 KB 0755
preparetips5 File 1019 B 0755
preunzip File 5.52 KB 0755
prezip File 5.52 KB 0755
prezip-bin File 66.16 KB 0755
print File 18.57 KB 0755
printafm File 395 B 0755
printenv File 66.45 KB 0755
printf File 66.45 KB 0755
prlimit File 66.82 KB 0755
procan File 131.93 KB 0755
profiles File 66.16 KB 0755
proj File 66.27 KB 0755
projinfo File 130.58 KB 0755
projsync File 130.34 KB 0755
prove File 13.36 KB 0755
proxy File 66.01 KB 0755
prtstat File 66.63 KB 0755
prune File 66.54 KB 0755
ps File 194.86 KB 0755
ps2ascii File 494 B 0755
ps2epsi File 1.27 KB 0755
ps2pdf File 272 B 0755
ps2pdf12 File 257 B 0755
ps2pdf13 File 257 B 0755
ps2pdf14 File 257 B 0755
ps2pdfwr File 1.05 KB 0755
ps2ps File 647 B 0755
ps2ps2 File 669 B 0755
ps2txt File 494 B 0755
psfaddtable File 66.59 KB 0755
psfgettable File 66.59 KB 0755
psfstriptable File 66.59 KB 0755
psfxtable File 66.59 KB 0755
psktool File 66.24 KB 0755
pslog File 66.42 KB 0755
pstree File 67.66 KB 0755
pstree.x11 File 67.66 KB 0755
ptar File 3.48 KB 0755
ptardiff File 2.58 KB 0755
ptargrep File 4.29 KB 0755
ptx File 66.5 KB 0755
pv File 133.87 KB 0755
pw-cat File 130.24 KB 0755
pw-cli File 130.34 KB 0755
pw-config File 66.24 KB 0755
pw-container File 66.24 KB 0755
pw-dot File 66.24 KB 0755
pw-dsdplay File 130.24 KB 0755
pw-dump File 130.31 KB 0755
pw-encplay File 130.24 KB 0755
pw-link File 66.24 KB 0755
pw-loopback File 66.24 KB 0755
pw-metadata File 66.24 KB 0755
pw-mididump File 66.24 KB 0755
pw-midiplay File 130.24 KB 0755
pw-midirecord File 130.24 KB 0755
pw-mon File 130.27 KB 0755
pw-play File 130.24 KB 0755
pw-profiler File 66.24 KB 0755
pw-record File 130.24 KB 0755
pw-reserve File 66.24 KB 0755
pw-top File 66.24 KB 0755
pwd File 66.45 KB 0755
pwdx File 66.23 KB 0755
pwrkey File 170 B 0755
py3clean File 7.59 KB 0755
py3compile File 12.99 KB 0755
py3versions File 12.52 KB 0755
pyav File 210 B 0755
pybabel File 956 B 0755
pybabel-python3 File 956 B 0755
pydoc File 80 B 0755
pydoc3 File 80 B 0755
pydoc3.13 File 80 B 0755
pygettext3 File 23.87 KB 0755
pygettext3.13 File 23.87 KB 0755
pygmentize File 215 B 0755
pylint File 217 B 0755
pylint-config File 233 B 0755
pyreverse File 223 B 0755
pyserial-miniterm File 975 B 0755
pyserial-ports File 969 B 0755
python File 6.36 MB 0755
python3 File 6.36 MB 0755
python3-config File 3.07 KB 0755
python3.13 File 6.36 MB 0755
python3.13-config File 3.07 KB 0755
pzstd File 706.49 KB 0755
qcam File 322.92 KB 0755
qt-faststart File 66.16 KB 0755
qt5ct File 642.33 KB 0755
qt6ct File 643.85 KB 0755
qvlc File 42 B 0755
ranlib File 67.09 KB 0755
raspi-config File 124.73 KB 0755
raspinfo File 7.51 KB 0755
rbash File 1.35 MB 0755
rctest File 66.19 KB 0755
rdma File 210.61 KB 0755
rds-ctl File 131.22 KB 0755
readelf File 779.66 KB 0755
readlink File 66.45 KB 0755
realpath File 66.46 KB 0755
rec File 130.3 KB 0755
recordmydesktop File 131.8 KB 0755
red File 89 B 0755
rename-user File 2.56 KB 0755
rename.ul File 66.31 KB 0755
renice File 66.31 KB 0755
replace File 4.57 MB 0755
reset File 66.17 KB 0755
resolve_stack_dump File 4.57 MB 0755
resolveip File 4.57 MB 0755
rev File 66.31 KB 0755
rfcomm File 66.57 KB 0755
rgrep File 30 B 0755
rm File 130.46 KB 0755
rmdir File 66.45 KB 0755
rnano File 324.81 KB 0755
rotatelogs File 66.24 KB 0755
routel File 1.62 KB 0755
rp-bookshelf File 67.38 KB 0755
rp-prefapps File 67.52 KB 0755
rpcc File 67.15 KB 0755
rpcgen File 130.91 KB 0755
rpcinfo File 66.54 KB 0755
rpi-bootloader-key-convert File 1.37 KB 0755
rpi-bootloader-version File 1.5 KB 0755
rpi-connect File 7.75 MB 0755
rpi-connect-env File 216 B 0755
rpi-connectd File 13 MB 0755
rpi-eeprom-ab File 66.39 KB 0755
rpi-eeprom-config File 26.03 KB 0755
rpi-eeprom-digest File 5.39 KB 0755
rpi-eeprom-update File 46.03 KB 0755
rpi-fw-crypto File 66.36 KB 0755
rpi-gui-nop File 386.38 KB 0755
rpi-imager File 32.63 MB 0755
rpi-keyboard-config File 1013 B 0755
rpi-keyboard-fw-update File 10.41 KB 0755
rpi-otp-private-key File 6.08 KB 0755
rpi-sign-bootcode File 14.45 KB 0755
rpi-systemd-config File 12.66 KB 0755
rpi-update File 18.33 KB 0755
rpi-usb-gadget File 11.38 KB 0755
rpicam-hello File 66.68 KB 0755
rpicam-jpeg File 131.18 KB 0755
rpicam-raw File 195.23 KB 0755
rpicam-still File 195.47 KB 0755
rpicam-vid File 195.26 KB 0755
rrsync File 12.7 KB 0755
rst-buildhtml File 12.63 KB 0755
rst2html File 220 B 0755
rst2html4 File 222 B 0755
rst2html5 File 222 B 0755
rst2latex File 222 B 0755
rst2man File 218 B 0755
rst2odt File 218 B 0755
rst2odt_prepstyles File 596 B 0755
rst2pseudoxml File 230 B 0755
rst2s5 File 216 B 0755
rst2xetex File 222 B 0755
rst2xml File 218 B 0755
rstpep2html File 678 B 0755
rsync File 594.02 KB 0755
rsync-ssl File 5.01 KB 0755
rtstat File 66.59 KB 0755
run-mailcap File 18.57 KB 0755
run-parts File 66.67 KB 0755
run-with-aspell File 57 B 0755
run0 File 130.92 KB 0755
runcon File 66.45 KB 0755
rview File 1.79 MB 0755
rvlc File 42 B 0755
samba-log-parser File 200 B 0755
samba-regedit File 131.19 KB 0755
samba-tool File 1.23 KB 0755
sane-find-scanner File 195.36 KB 0755
savelog File 10.24 KB 0755
sbout File 113 B 0755
sbtest File 186 B 0755
scalar File 2.29 MB 0755
scanimage File 67.13 KB 0755
sccmap File 66.58 KB 0755
scncopy File 66.33 KB 0755
scp File 258.56 KB 0755
scp-dbus-service File 90 B 0755
screendump File 66.53 KB 0755
script File 130.32 KB 0755
scriptlive File 66.32 KB 0755
scriptreplay File 66.32 KB 0755
scrot File 66.43 KB 0755
sdiff File 67.05 KB 0755
sdptool File 136.13 KB 0755
sed File 131.47 KB 0755
see File 18.57 KB 0755
select-default-iwrap File 474 B 0755
select-editor File 2.62 KB 0755
send2trash File 218 B 0755
sensible-browser File 1.06 KB 0755
sensible-editor File 1.51 KB 0755
sensible-pager File 824 B 0755
sensible-terminal File 1.08 KB 0755
seq File 66.45 KB 0755
sessreg File 66.48 KB 0755
setarch File 130.58 KB 0755
setcifsacl File 66.16 KB 0755
setfacl File 66.23 KB 0755
setfattr File 66.24 KB 0755
setfont File 67.22 KB 0755
setkeycodes File 66.61 KB 0755
setleds File 66.59 KB 0755
setlogcons File 66.62 KB 0755
setmetamode File 66.72 KB 0755
setpci File 66.33 KB 0755
setpriv File 130.32 KB 0755
setsid File 66.31 KB 0755
setterm File 66.32 KB 0755
setup_env File 561 B 0755
setupcon File 35.9 KB 0755
setvtrgb File 66.7 KB 0755
setxkbmap File 66.96 KB 0755
sfdp File 66.43 KB 0755
sfparse File 67.68 KB 0755
sftp File 258.54 KB 0755
sg File 66.31 KB 4755
sh File 194.59 KB 0755
sha1sum File 66.46 KB 0755
sha224sum File 66.46 KB 0755
sha256sum File 66.46 KB 0755
sha384sum File 66.46 KB 0755
sha512sum File 66.46 KB 0755
sharesec File 66.23 KB 0755
shasum File 9.75 KB 0755
showconsolefont File 66.72 KB 0755
showkey File 66.75 KB 0755
showrgb File 66.36 KB 0755
shred File 130.46 KB 0755
shuf File 66.45 KB 0755
size File 66.8 KB 0755
skill File 66.27 KB 0755
slabtop File 66.29 KB 0755
sleep File 66.45 KB 0755
slurp File 66.63 KB 0755
smb2-quota File 6.3 KB 0755
smbcontrol File 66.45 KB 0755
smbinfo File 29.47 KB 0755
smbpasswd File 66.25 KB 0755
smbstatus File 130.23 KB 0755
snice File 66.27 KB 0755
socat File 518.27 KB 0755
socat-broker.sh File 3.04 KB 0755
socat-chain.sh File 8.02 KB 0755
socat-mux.sh File 4.38 KB 0755
socat1 File 518.27 KB 0755
soelim File 66.37 KB 0755
sort File 130.71 KB 0755
sox File 130.3 KB 0755
soxi File 130.3 KB 0755
spa-acp-tool File 387.95 KB 0755
spa-inspect File 130.33 KB 0755
spa-json-dump File 66.24 KB 0755
spa-monitor File 66.33 KB 0755
spa-resample File 386.45 KB 0755
speaker-test File 66.3 KB 0755
splain File 19 KB 0755
split File 66.88 KB 0755
splitfont File 66.27 KB 0755
spumux File 196.16 KB 0755
spuunmux File 130.25 KB 0755
sq File 18.52 MB 0755
squeekboard File 16.38 MB 0755
squeekboard-restyled File 428 B 0755
sqv File 1.56 MB 0755
ss File 210.86 KB 0755
ssh File 1 MB 0755
ssh-add File 450.38 KB 0755
ssh-agent File 450.3 KB 2755
ssh-argv0 File 1.42 KB 0755
ssh-copy-id File 13.84 KB 0755
ssh-import-id File 986 B 0755
ssh-import-id-gh File 785 B 0755
ssh-import-id-lp File 785 B 0755
ssh-keygen File 578.49 KB 0755
ssh-keyscan File 578.7 KB 0755
sshfs File 132.68 KB 0755
startx File 5.26 KB 0755
startx-rpd File 657 B 0755
stat File 130.47 KB 0755
stdbuf File 66.45 KB 0755
stl2gts File 66.73 KB 0755
strace File 1.75 MB 0755
strace-log-merge File 1.83 KB 0755
streamzip File 7.87 KB 0755
strings File 66.93 KB 0755
strip File 199.71 KB 0755
stty File 130.47 KB 0755
stubgen File 211 B 0755
stubtest File 212 B 0755
su File 130.34 KB 4755
sudo File 327.31 KB 4755
sudoedit File 327.31 KB 4755
sudopwd File 66.42 KB 0755
sudoreplay File 131.83 KB 0755
sum File 66.46 KB 0755
svlc File 46 B 0755
swayidle File 66.19 KB 0755
swaylock File 132.06 KB 0755
symilar File 219 B 0755
sync File 66.45 KB 0755
syscse File 194.81 KB 0755
systemctl File 323.73 KB 0755
systemd-ac-power File 66.3 KB 0755
systemd-analyze File 259.07 KB 0755
systemd-ask-password File 66.45 KB 0755
systemd-cat File 66.31 KB 0755
systemd-cgls File 66.43 KB 0755
systemd-cgtop File 66.35 KB 0755
systemd-confext File 130.51 KB 0755
systemd-creds File 66.64 KB 0755
systemd-delta File 66.3 KB 0755
systemd-detect-virt File 66.3 KB 0755
systemd-escape File 66.3 KB 0755
systemd-firstboot File 66.74 KB 0755
systemd-hwdb File 66.3 KB 0755
systemd-id128 File 66.32 KB 0755
systemd-inhibit File 66.33 KB 0755
systemd-machine-id-setup File 66.48 KB 0755
systemd-mount File 66.65 KB 0755
systemd-notify File 66.57 KB 0755
systemd-path File 66.3 KB 0755
systemd-run File 130.92 KB 0755
systemd-socket-activate File 66.3 KB 0755
systemd-stdio-bridge File 66.31 KB 0755
systemd-sysext File 130.51 KB 0755
systemd-sysusers File 66.52 KB 0755
systemd-tmpfiles File 130.59 KB 0755
systemd-tty-ask-password-agent File 66.3 KB 0755
systemd-umount File 66.65 KB 0755
systemd-vpick File 66.52 KB 0755
systemsettings File 452.52 KB 0755
tabs File 66.16 KB 0755
tac File 66.45 KB 0755
tail File 130.48 KB 0755
tar File 463.3 KB 0755
taskset File 130.32 KB 0755
tbl File 194.37 KB 0755
tdbbackup File 66.16 KB 0755
tdbbackup.tdbtools File 66.16 KB 0755
tdbdump File 66.16 KB 0755
tdbrestore File 66.16 KB 0755
tdbtool File 66.65 KB 0755
tee File 66.46 KB 0755
tempfile File 66.41 KB 0755
test File 66.45 KB 0755
testparm File 66.21 KB 0755
thonny File 945 B 0755
tic File 130.28 KB 0755
timedatectl File 66.3 KB 0755
timeout File 66.87 KB 0755
tload File 66.25 KB 0755
toe File 66.16 KB 0755
top File 135.45 KB 0755
touch File 130.46 KB 0755
tput File 66.2 KB 0755
tqdm File 208 B 0755
tr File 66.45 KB 0755
transform File 66.92 KB 0755
tred File 66.49 KB 0755
troff File 879.8 KB 0755
true File 66.45 KB 0755
truncate File 66.45 KB 0755
trust File 258.52 KB 0755
tset File 66.17 KB 0755
tsort File 66.45 KB 0755
tty File 66.45 KB 0755
twolame File 67.13 KB 0755
twopi File 66.43 KB 0755
tzselect File 21.37 KB 0755
ucf File 35.62 KB 0755
ucfq File 18.46 KB 0755
ucfr File 9.93 KB 0755
uclampset File 130.32 KB 0755
ucs2any File 66.5 KB 0755
udevadm File 643.43 KB 0755
udisksctl File 66.23 KB 0755
ul File 66.32 KB 0755
umax_pp File 195.32 KB 0755
umount File 66.31 KB 4755
uname File 66.46 KB 0755
unar File 2.95 MB 0755
uncompress File 2.28 KB 0755
unexpand File 66.47 KB 0755
unflatten File 66.49 KB 0755
unicode_start File 2.71 KB 0755
unicode_stop File 528 B 0755
uniq File 66.48 KB 0755
unix2dos File 74.17 KB 0755
unix2mac File 74.17 KB 0755
unlink File 66.45 KB 0755
unlzma File 130.76 KB 0755
unmkinitramfs File 66.49 KB 0755
unshare File 130.53 KB 0755
unxz File 130.76 KB 0755
unzip File 195.02 KB 0755
unzipsfx File 130.84 KB 0755
unzstd File 1.26 MB 0755
update-alternatives File 66.25 KB 0755
update-desktop-database File 66.25 KB 0755
update-mime-database File 130.25 KB 0755
upower File 66.16 KB 0755
uptime File 66.23 KB 0755
usb-devices File 4.84 KB 0755
usbhid-dump File 66.24 KB 0755
usbreset File 66.16 KB 0755
userguide-open File 941 B 0755
users File 66.48 KB 0755
uuid File 66.29 KB 0755
v4l2-compliance File 771.53 KB 0755
v4l2-ctl File 524.45 KB 0755
v4l2-sysfs-path File 66.31 KB 0755
varlinkctl File 66.45 KB 0755
vcgencmd File 66.38 KB 0755
vclog File 66.55 KB 0755
vcmailbox File 66.34 KB 0755
vcs-run File 6.75 KB 0755
vcut File 66.17 KB 0755
vdir File 194.9 KB 0755
vi File 1.79 MB 0755
view File 1.79 MB 0755
vim.tiny File 1.79 MB 0755
vimdot File 1.06 KB 0755
vkcube File 387.62 KB 0755
vkcubepp File 457.55 KB 0755
vlc File 66.16 KB 0755
vlc-wrapper File 66.16 KB 0755
vmstat File 66.61 KB 0755
vncagent File 1.02 MB 0755
vncfopshelper File 824.33 KB 0755
vncinitconfig File 52.44 KB 0755
vnclicense File 1016.38 KB 0755
vnclicensewiz File 3.63 MB 0755
vncpamhelper File 720.35 KB 0755
vncpasswd File 648.23 KB 0755
vncserver File 581 B 0755
vncserver-virtual File 1.18 MB 0755
vncserver-virtuald File 3.07 MB 0755
vncserver-x11 File 1.54 MB 4755
vncserver-x11-core File 6.17 MB 0755
vncserver-x11-serviced File 624.28 KB 0755
vncserverui File 4.29 MB 0755
vorbiscomment File 66.24 KB 0755
vorbistagedit File 4.32 KB 0755
vsftpdwho File 54 B 0755
vulkaninfo File 771.27 KB 0755
w File 66.27 KB 0755
wall File 66.32 KB 0755
watch File 66.7 KB 0755
watchgnupg File 66.16 KB 0755
wayvnc File 202.07 KB 0755
wayvncctl File 69.54 KB 0755
wbinfo File 66.16 KB 0755
wc File 66.47 KB 0755
wcmgr File 65.98 KB 0755
wcurl File 10.98 KB 0755
wdctl File 130.32 KB 0755
webalizer File 212.18 KB 0755
webazolver File 212.18 KB 0755
wf-panel-pi File 711.09 KB 0755
wfpanelctl File 697 B 0755
wget File 467.16 KB 0755
whatis File 67.12 KB 0755
whereis File 66.31 KB 0755
which File 1.05 KB 0755
which.debianutils File 1.05 KB 0755
whiptail File 66.73 KB 0755
who File 66.5 KB 0755
whoami File 66.45 KB 0755
winexe File 194.25 KB 0755
wireplumber File 66.39 KB 0755
wlopm File 66.13 KB 0755
wlr-randr File 66.18 KB 0755
word-list-compress File 66.16 KB 0755
wordview File 8.97 KB 0755
wpa_passphrase File 130.25 KB 0755
wpctl File 66.44 KB 0755
wpexec File 66.3 KB 0755
wsrep_sst_backup File 2.39 KB 0755
wsrep_sst_common File 68.25 KB 0755
wsrep_sst_mariabackup File 51.98 KB 0755
wsrep_sst_mysqldump File 8.82 KB 0755
wsrep_sst_rsync File 29.85 KB 0755
wsrep_sst_rsync_wan File 29.85 KB 0755
www-browser File 1.98 MB 0755
x-session-manager File 657 B 0755
x-terminal-emulator File 133.7 KB 0755
x-window-manager File 451.63 KB 0755
x-www-browser File 848 B 0755
xarchiver File 323.38 KB 0755
xargs File 130.35 KB 0755
xauth File 67.45 KB 0755
xcmsdb File 66.57 KB 0755
xcompmgr File 66.16 KB 0755
xdg-desktop-icon File 22.29 KB 0755
xdg-desktop-menu File 43.17 KB 0755
xdg-email File 28.24 KB 0755
xdg-icon-resource File 31.47 KB 0755
xdg-mime File 46.62 KB 0755
xdg-open File 31.53 KB 0755
xdg-screensaver File 38.55 KB 0755
xdg-settings File 43.31 KB 0755
xdg-user-dir File 234 B 0755
xdg-user-dirs-update File 66.09 KB 0755
xfconf-query File 66.82 KB 0755
xgamma File 66.4 KB 0755
xhost File 66.58 KB 0755
xinit File 66.63 KB 0755
xinput File 67.41 KB 0755
xkbbell File 66.44 KB 0755
xkbcomp File 264.73 KB 0755
xkbevd File 66.73 KB 0755
xkbprint File 130.73 KB 0755
xkbvleds File 67.3 KB 0755
xkbwatch File 67.32 KB 0755
xkeystone File 16.58 KB 0755
xls2csv File 67.35 KB 0755
xml2-config File 1.4 KB 0755
xmlparse File 67.38 KB 0755
xmlstarlet File 130.11 KB 0755
xmodmap File 66.99 KB 0755
xrandr File 67.03 KB 0755
xrdb File 66.89 KB 0755
xrefresh File 66.51 KB 0755
xsel File 66.01 KB 0755
xset File 66.81 KB 0755
xsetmode File 66.38 KB 0755
xsetpointer File 66.4 KB 0755
xsetroot File 66.56 KB 0755
xsettingsd File 66.46 KB 0755
xstdcmap File 66.98 KB 0755
xsubpp File 5.05 KB 0755
xvidtune File 68.16 KB 0755
xwayland-xauth File 448 B 0755
xz File 130.76 KB 0755
xzcat File 130.76 KB 0755
xzcmp File 7.41 KB 0755
xzdiff File 7.41 KB 0755
xzegrep File 10.17 KB 0755
xzfgrep File 10.17 KB 0755
xzgrep File 10.17 KB 0755
xzless File 2.33 KB 0755
xzmore File 2.18 KB 0755
yes File 66.45 KB 0755
ypdomainname File 66.09 KB 0755
zcat File 1.93 KB 0755
zcmp File 1.64 KB 0755
zdiff File 6.29 KB 0755
zdump File 66.09 KB 0755
zegrep File 29 B 0755
zenity File 136.51 KB 0755
zenoty File 66.34 KB 0755
zfgrep File 29 B 0755
zforce File 2.03 KB 0755
zgrep File 8.01 KB 0755
zip File 264.14 KB 0755
zipcloak File 132.36 KB 0755
zipdetails File 231.06 KB 0755
zipgrep File 2.76 KB 0755
zipinfo File 195.02 KB 0755
zipnote File 132.05 KB 0755
zipsplit File 132.05 KB 0755
zless File 2.38 KB 0755
zmore File 1.79 KB 0755
znew File 4.75 KB 0755
zstd File 1.26 MB 0755
zstdcat File 1.26 MB 0755
zstdgrep File 3.78 KB 0755
zstdless File 197 B 0755
zstdmt File 1.26 MB 0755
Filemanager