Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.172
Cant Read [ /etc/named.conf ]
7.4.32
finalho
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
local /
src /
pcre2-10.39 /
[ HOME SHELL ]
Name
Size
Permission
Action
.libs
[ DIR ]
drwxr-xr-x
cmake
[ DIR ]
drwxr-xr-x
doc
[ DIR ]
drwxr-xr-x
m4
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
testdata
[ DIR ]
drwxr-xr-x
132html
6.88
KB
-rwxr-xr-x
AUTHORS
749
B
-rw-r--r--
CMakeLists.txt
43.37
KB
-rw-r--r--
COPYING
97
B
-rw-r--r--
ChangeLog
120
KB
-rw-r--r--
CheckMan
1.66
KB
-rwxr-xr-x
CleanTxt
2.87
KB
-rwxr-xr-x
Detrail
643
B
-rwxr-xr-x
HACKING
37.67
KB
-rw-r--r--
INSTALL
15.4
KB
-rw-r--r--
LICENCE
3.4
KB
-rw-r--r--
Makefile
212.31
KB
-rw-r--r--
Makefile.am
25.41
KB
-rw-r--r--
Makefile.in
235.62
KB
-rw-r--r--
NEWS
13.65
KB
-rw-r--r--
NON-AUTOTOOLS-BUILD
18.01
KB
-rw-r--r--
PrepareRelease
6.76
KB
-rwxr-xr-x
README
42.16
KB
-rw-r--r--
RunGrepTest
40.07
KB
-rwxr-xr-x
RunGrepTest.bat
34.39
KB
-rw-r--r--
RunTest
24.53
KB
-rwxr-xr-x
RunTest.bat
13.54
KB
-rw-r--r--
aclocal.m4
55.85
KB
-rw-r--r--
ar-lib
5.74
KB
-rwxr-xr-x
compile
7.23
KB
-rwxr-xr-x
config-cmake.h.in
1.55
KB
-rw-r--r--
config.guess
48.19
KB
-rwxr-xr-x
config.log
53.34
KB
-rw-r--r--
config.status
60.14
KB
-rwxr-xr-x
config.sub
34.45
KB
-rwxr-xr-x
configure
531.64
KB
-rwxr-xr-x
configure.ac
40.69
KB
-rw-r--r--
depcomp
23.02
KB
-rwxr-xr-x
install-sh
15
KB
-rwxr-xr-x
libpcre2-16.pc
344
B
-rw-r--r--
libpcre2-16.pc.in
406
B
-rw-r--r--
libpcre2-32.pc
344
B
-rw-r--r--
libpcre2-32.pc.in
406
B
-rw-r--r--
libpcre2-8.la
954
B
-rw-r--r--
libpcre2-8.pc
341
B
-rw-r--r--
libpcre2-8.pc.in
403
B
-rw-r--r--
libpcre2-posix.la
1.31
KB
-rw-r--r--
libpcre2-posix.pc
310
B
-rw-r--r--
libpcre2-posix.pc.in
342
B
-rw-r--r--
libtool
338.15
KB
-rwxr-xr-x
ltmain.sh
323.47
KB
-rw-r--r--
missing
6.72
KB
-rwxr-xr-x
pcre2-config
2.12
KB
-rwxr-xr-x
pcre2-config.in
2.29
KB
-rw-r--r--
pcre2grep
7.28
KB
-rwxr-xr-x
pcre2test
7.41
KB
-rwxr-xr-x
perltest.sh
11.1
KB
-rwxr-xr-x
test-driver
4.76
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CleanTxt
#! /usr/bin/perl -w # Script to take the output of nroff -man and remove all the backspacing and # the page footers and the screen commands etc so that it is more usefully # readable online. In fact, in the latest nroff, intermediate footers don't # seem to be generated any more. $blankcount = 0; $lastwascut = 0; $firstheader = 1; # Input on STDIN; output to STDOUT. while (<STDIN>) { s/\x1b\[\d+m//g; # Remove screen controls "ESC [ number m" s/.\x8//g; # Remove "char, backspace" # Handle header lines. Retain only the first one we encounter, but remove # the blank line that follows. Any others (e.g. at end of document) and the # following blank line are dropped. if (/^PCRE(\w*)\(([13])\)\s+PCRE\1\(\2\)$/) { if ($firstheader) { $firstheader = 0; print; $lastprinted = $_; $lastwascut = 0; } $_=<STDIN>; # Remove a blank that follows next; } # Count runs of empty lines if (/^\s*$/) { $blankcount++; $lastwascut = 0; next; } # If a chunk of lines has been cut out (page footer) and the next line # has a different indentation, put back one blank line. if ($lastwascut && $blankcount < 1 && defined($lastprinted)) { ($a) = $lastprinted =~ /^(\s*)/; ($b) = $_ =~ /^(\s*)/; $blankcount++ if ($a ne $b); } # We get here only when we have a non-blank line in hand. If it was preceded # by 3 or more blank lines, read the next 3 lines and see if they are blank. # If so, remove all 7 lines, and remember that we have just done a cut. if ($blankcount >= 3) { for ($i = 0; $i < 3; $i++) { $next[$i] = <STDIN>; $next[$i] = "" if !defined $next[$i]; $next[$i] =~ s/\x1b\[\d+m//g; # Remove screen controls "ESC [ number m" $next[$i] =~ s/.\x8//g; # Remove "char, backspace" } # Cut out chunks of the form <3 blanks><non-blank><3 blanks> if ($next[0] =~ /^\s*$/ && $next[1] =~ /^\s*$/ && $next[2] =~ /^\s*$/) { $blankcount -= 3; $lastwascut = 1; } # Otherwise output the saved blanks, the current, and the next three # lines. Remember the last printed line. else { for ($i = 0; $i < $blankcount; $i++) { print "\n"; } print; for ($i = 0; $i < 3; $i++) { $next[$i] =~ s/.\x8//g; print $next[$i]; $lastprinted = $_; } $lastwascut = 0; $blankcount = 0; } } # This non-blank line is not preceded by 3 or more blank lines. Output # any blanks there are, and the line. Remember it. Force two blank lines # before headings. else { $blankcount = 2 if /^\S/ && !/^Last updated/ && !/^Copyright/ && defined($lastprinted); for ($i = 0; $i < $blankcount; $i++) { print "\n"; } print; $lastprinted = $_; $lastwascut = 0; $blankcount = 0; } } # End
Close