#!/bin/bash # bug script for TeX Live packages set -e cat < 100KB. They won't make it through our mailing list and we won't see the report! Press ENTER to continue EOF getkey cat >&3 <&3 echo " List of ls-R files" >&3 echo >&3 for file in $ls_R_files; do ls -l $file >&3 # echo >&3 # cat $file >&3 # echo "######################################" >&3 done echo "######################################" >&3 echo " Config files" >&3 for i in texmf.cnf fmtutil.cnf updmap.cfg ; do f=$(kpsewhich --format='web2c files' $i) if [ -z "$f" ] ; then echo "Warning: $i cannot be found with kpsewhich!" >&3 else ls -l $f >&3 fi done for i in language.dat ; do f=$(kpsewhich -progname=latex $i) if [ -z "$f" ] ; then echo "Warning: $i cannot be found with kpsewhich!" >&3 else ls -l $f >&3 fi done echo "######################################" >&3 echo " Files in /etc/texmf/web2c/" >&3 ls -l /etc/texmf/web2c/ >&3 echo "######################################" >&3 echo " md5sums of texmf.d" >&3 md5sum /etc/texmf/texmf.d/* >&3