One Hat Cyber Team
Your IP :
172.70.100.203
Server IP :
104.21.7.16
Server :
Linux server3.shared.spaceship.host 4.18.0-553.47.1.lve.el8.x86_64 #1 SMP Tue Apr 8 13:54:31 UTC 2025 x86_64
Server Software :
LiteSpeed
PHP Version :
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
rpm
/
View File Name :
fontconfig.prov
#!/bin/bash # # Script to install in: # /usr/lib/rpm/redhat/find-provides.d # # Transform font files into RPM provides # Requires fontconfig >= 2.6.90 # # Author: Behdad Esfahbod <behdad@redhat.com> # Based on other provides scripts from RPM # fcquery=/usr/bin/fc-query if [ ! -x $fcquery ]; then cat > /dev/null exit 0 fi # filter out anything outside main fontconfig path grep /usr/share/fonts/ | while read fn; do $fcquery --format '%{=pkgkit}' "${fn}" 2> /dev/null done