HEX
Server: Apache
System: Linux box5514.bluehost.com 5.14.0-162.23.1.9991722448259.nf.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 31 18:11:45 UTC 2024 x86_64
User: smqcdvmy (3893)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: //sbin/generate-fmtutilcnf
#!/bin/bash

# Regenerate the fmtutil.cnf file from the pieces which are currently present
# in the fmtutil.cnf.d directory.

# Abort immediately if any command fails
set -o errexit
shopt -s nullglob

texdir=$1
[[ -z $texdir ]] && texdir=/usr/share/texlive
web2cdir=$texdir/texmf-dist/web2c

rm -f $web2cdir/fmtutil.cnf.rpmtmp

echo "# Generated by $0 on $(date)" > $web2cdir/fmtutil.cnf.rpmtmp

cat $web2cdir/fmtutil-hdr.cnf \
    $texdir/fmtutil.cnf.d/* \
    >> $web2cdir/fmtutil.cnf.rpmtmp

mv $web2cdir/fmtutil.cnf.rpmtmp $web2cdir/fmtutil.cnf