Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
x86_64-linux-gnu /
perl5 /
5.34 /
Devel /
Cover /
[ HOME SHELL ]
Name
Size
Permission
Action
Annotation
[ DIR ]
drwxr-xr-x
DB
[ DIR ]
drwxr-xr-x
Report
[ DIR ]
drwxr-xr-x
Branch.pm
2.28
KB
-rw-r--r--
Collection.pm
25.29
KB
-rw-r--r--
Condition.pm
1.35
KB
-rw-r--r--
Condition_and_2.pm
1.03
KB
-rw-r--r--
Condition_and_3.pm
1.04
KB
-rw-r--r--
Condition_or_2.pm
1.02
KB
-rw-r--r--
Condition_or_3.pm
1.04
KB
-rw-r--r--
Condition_xor_4.pm
1.03
KB
-rw-r--r--
Criterion.pm
2.71
KB
-rw-r--r--
DB.pm
30.7
KB
-rw-r--r--
Dumper.pm
1.37
KB
-rw-r--r--
Html_Common.pm
884
B
-rw-r--r--
Inc.pm
1.23
KB
-rw-r--r--
Op.pm
2.91
KB
-rw-r--r--
Pod.pm
1.53
KB
-rw-r--r--
Statement.pm
1.19
KB
-rw-r--r--
Subroutine.pm
1.19
KB
-rw-r--r--
Test.pm
14.12
KB
-rw-r--r--
Time.pm
1.53
KB
-rw-r--r--
Truth_Table.pm
15.63
KB
-rw-r--r--
Tutorial.pod
5.24
KB
-rw-r--r--
Util.pm
2.1
KB
-rw-r--r--
Web.pm
28.17
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Util.pm
# Copyright 2001-2019, Paul Johnson (paul@pjcj.net) # This software is free. It is licensed under the same terms as Perl itself. # The latest version of this software should be available from my homepage: # http://www.pjcj.net package Devel::Cover::Util; use strict; use warnings; our $VERSION = '1.36'; # VERSION use Cwd "abs_path"; use File::Spec; use base "Exporter"; our @EXPORT_OK = qw( remove_contained_paths ); sub remove_contained_paths { my ($container, @paths) = @_; # File::Spec's case tolerancy detection on *nix/Mac systems does not # take actual file system properties into account, but is better than # trying to normalise paths with per-os logic. On Windows it is # properly determined per drive. my ($drive) = File::Spec->splitpath($container); my $ignore_case = "(?i)"; $ignore_case = "" if !File::Spec->case_tolerant($drive); my $regex = qr[ $ignore_case # ignore case on tolerant filesystems ^ # string to match starts with: \Q$container\E # path, meta-quoted for safety ($|/) # followed by either the end of the string, or another # slash, to avoid removing paths in directories named # similar to the container ]x; @paths = grep { my $path = abs_path $_; # normalise backslashes $path !~ $regex; # check if path is inside the container } @paths; return @paths; } 1 __END__ =head1 NAME Devel::Cover::Util - Utility subroutines for Devel::Cover =head1 VERSION version 1.36 =head1 SYNOPSIS use Devel::Cover::Util "remove_contained_paths"; =head1 DESCRIPTION This module utility subroutines for Devel::Cover. =head1 SUBROUTINES =head2 remove_contained_paths @Inc = remove_contained_paths(getcwd, @Inc); Remove certain paths from a list of paths. =head1 BUGS Huh? =head1 LICENCE Copyright 2001-2019, Paul Johnson (paul@pjcj.net) This software is free. It is licensed under the same terms as Perl itself. The latest version of this software should be available from my homepage: http://www.pjcj.net =cut
Close