Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.70.80.43
138 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
rpm /
[ HOME SHELL ]
Name
Size
Permission
Action
fileattrs
[ DIR ]
drwxr-xr-x
macros.d
[ DIR ]
drwxr-xr-x
platform
[ DIR ]
drwxr-xr-x
brp-compress
1.65
KB
-rwxr-xr-x
brp-elfperms
428
B
-rwxr-xr-x
brp-python-bytecompile
3.81
KB
-rwxr-xr-x
brp-python-hardlink
636
B
-rwxr-xr-x
brp-remove-la-files
190
B
-rwxr-xr-x
brp-strip
502
B
-rwxr-xr-x
brp-strip-comment-note
745
B
-rwxr-xr-x
brp-strip-static-archive
495
B
-rwxr-xr-x
check-buildroot
1.26
KB
-rwxr-xr-x
check-files
1.03
KB
-rwxr-xr-x
check-prereqs
418
B
-rwxr-xr-x
check-rpaths
1.06
KB
-rwxr-xr-x
check-rpaths-worker
5.14
KB
-rwxr-xr-x
elfdeps
22.3
KB
-rwxr-xr-x
find-lang.sh
8.84
KB
-rwxr-xr-x
find-provides
91
B
-rwxr-xr-x
find-requires
91
B
-rwxr-xr-x
fontconfig.prov
489
B
-rwxr-xr-x
macros
41.8
KB
-rw-r--r--
mkinstalldirs
3.46
KB
-rwxr-xr-x
ocamldeps.sh
6.68
KB
-rwxr-xr-x
perl.prov
6.28
KB
-rwxr-xr-x
perl.req
8.91
KB
-rwxr-xr-x
pkgconfigdeps.sh
1.34
KB
-rwxr-xr-x
pythondistdeps.py
27.53
KB
-rwxr-xr-x
rpm.daily
304
B
-rwxr-xr-x
rpm.supp
688
B
-rw-r--r--
rpm2cpio.sh
1.22
KB
-rwxr-xr-x
rpmdb_dump
37
B
-rwxr-xr-x
rpmdb_load
37
B
-rwxr-xr-x
rpmdeps
18.97
KB
-rwxr-xr-x
rpmpopt-4.17.0
11.78
KB
-rw-r--r--
rpmrc
17.24
KB
-rw-r--r--
script.req
322
B
-rwxr-xr-x
tgpg
933
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : brp-compress
#!/bin/sh # If using normal root, avoid changing anything. if [ -z "$RPM_BUILD_ROOT" ] || [ "$RPM_BUILD_ROOT" = "/" ]; then exit 0 fi PREFIX=${1:-/usr} cd "$RPM_BUILD_ROOT" # Compress man pages COMPRESS=${COMPRESS:-gzip -9 -n} COMPRESS_EXT=${COMPRESS_EXT:-.gz} for d in .${PREFIX}/man/man* .${PREFIX}/man/*/man* .${PREFIX}/info \ .${PREFIX}/share/man/man* .${PREFIX}/share/man/*/man* \ .${PREFIX}/share/info .${PREFIX}/kerberos/man \ .${PREFIX}/X11R6/man/man* .${PREFIX}/lib/perl5/man/man* \ .${PREFIX}/share/doc/*/man/man* .${PREFIX}/lib/*/man/man* \ .${PREFIX}/share/fish/man/man* do [ -d $d ] || continue for f in `find $d -type f ! -name dir` do [ -f "$f" ] || continue case "$f" in *.gz|*.Z) gunzip -f $f; b=`echo $f | sed -e 's/\.\(gz\|Z\)$//'`;; *.bz2) bunzip2 -f $f; b=`echo $f | sed -e 's/\.bz2$//'`;; *.xz|*.lzma) unxz -f $f; b=`echo $f | sed -e 's/\.\(xz\|lzma\)$//'`;; *.zst|*.zstd) unzstd -f --rm $f; b=`echo $f | sed -e 's/\.\(zst\|zstd\)$//'`;; *) b=$f;; esac $COMPRESS $b </dev/null 2>/dev/null || { inode=`ls -i $b | awk '{ print $1 }'` others=`find $d -type f -inum $inode` if [ -n "$others" ]; then for afile in $others ; do [ "$afile" != "$b" ] && rm -f $afile done $COMPRESS -f $b for afile in $others ; do [ "$afile" != "$b" ] && ln $b$COMPRESS_EXT $afile$COMPRESS_EXT done else $COMPRESS -f $b fi } done for f in `find $d -type l` do l=`ls -l $f | sed -e 's/.* -> //' -e 's/\.\(gz\|Z\|bz2\|xz\|lzma\|zst\|zstd\)$//'` rm -f $f b=`echo $f | sed -e 's/\.\(gz\|Z\|bz2\|xz\|lzma\|zst\|zstd\)$//'` ln -sf $l$COMPRESS_EXT $b$COMPRESS_EXT done done
Close