[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
lib
/
rpm
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 fileattrs
SET
[ DEL ]
📁 macros.d
SET
[ DEL ]
📁 platform
SET
[ DEL ]
📁 redhat
SET
[ DEL ]
📄 kabi.sh
468 B
SET
[ EDIT ]
|
[ DEL ]
📄 kmod.prov
682 B
SET
[ EDIT ]
|
[ DEL ]
📄 macros
43,988 B
SET
[ EDIT ]
|
[ DEL ]
📄 python-macro-helper
634 B
SET
[ EDIT ]
|
[ DEL ]
📄 pythondeps.sh
921 B
SET
[ EDIT ]
|
[ DEL ]
📄 pythondistdeps.py
11,184 B
SET
[ EDIT ]
|
[ DEL ]
📄 rpm.daily
296 B
SET
[ EDIT ]
|
[ DEL ]
📄 rpm.log
61 B
SET
[ EDIT ]
|
[ DEL ]
📄 rpm.supp
688 B
SET
[ EDIT ]
|
[ DEL ]
📄 rpm2cpio.sh
1,249 B
SET
[ EDIT ]
|
[ DEL ]
📄 rpmdb_dump
16,904 B
SET
[ EDIT ]
|
[ DEL ]
📄 rpmdb_load
29,296 B
SET
[ EDIT ]
|
[ DEL ]
📄 rpmdb_loadcvt
1,467 B
SET
[ EDIT ]
|
[ DEL ]
📄 rpmdb_recover
16,904 B
SET
[ EDIT ]
|
[ DEL ]
📄 rpmdb_stat
16,872 B
SET
[ EDIT ]
|
[ DEL ]
📄 rpmdb_upgrade
12,752 B
SET
[ EDIT ]
|
[ DEL ]
📄 rpmdb_verify
16,856 B
SET
[ EDIT ]
|
[ DEL ]
📄 rpmpopt-4.14.3
11,470 B
SET
[ EDIT ]
|
[ DEL ]
📄 rpmrc
17,154 B
SET
[ EDIT ]
|
[ DEL ]
📄 tgpg
929 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: pythondeps.sh
#!/bin/bash [ $# -ge 1 ] || { cat > /dev/null exit 0 } case $1 in -P|--provides) shift # Match buildroot/payload paths of the form # /PATH/OF/BUILDROOT/usr/bin/pythonMAJOR.MINOR # generating a line of the form # python(abi) = MAJOR.MINOR # (Don't match against -config tools e.g. /usr/bin/python2.6-config) grep "/usr/bin/python.\..$" \ | sed -e "s|.*/usr/bin/python\(.\..\)|python(abi) = \1|" ;; -R|--requires) shift # Match buildroot paths of the form # /PATH/OF/BUILDROOT/usr/lib/pythonMAJOR.MINOR/ and # /PATH/OF/BUILDROOT/usr/lib64/pythonMAJOR.MINOR/ # generating (uniqely) lines of the form: # python(abi) = MAJOR.MINOR grep -E "/usr/lib[^/]*/python[[:digit:]]+\.[[:digit:]]+/.*" \ | sed -Ee "s|.*/usr/lib[^/]*/python([[:digit:]]+\.[[:digit:]]+)/.*|python(abi) = \1|g" \ | sort | uniq ;; esac exit 0