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.69.130.122
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-python-hardlink
#!/bin/sh # If using normal root, avoid changing anything. if [ -z "$RPM_BUILD_ROOT" ] || [ "$RPM_BUILD_ROOT" = "/" ]; then exit 0 fi hardlink_if_same() { if cmp -s "$1" "$2" ; then ln -f "$1" "$2" return 0 fi return 1 } # Hardlink identical *.pyc, *.pyo, and *.opt-[12].pyc. # Originally from PLD's rpm-build-macros find "$RPM_BUILD_ROOT" -type f -name "*.pyc" -not -name "*.opt-[12].pyc" | while read pyc ; do hardlink_if_same "$pyc" "${pyc%c}o" o1pyc="${pyc%pyc}opt-1.pyc" hardlink_if_same "$pyc" "$o1pyc" o2pyc="${pyc%pyc}opt-2.pyc" hardlink_if_same "$pyc" "$o2pyc" || hardlink_if_same "$o1pyc" "$o2pyc" done exit 0
Close