lfs/pdf-fixups.sh
Bruce Dubbs e436213b71 Disable pdf-fixups.sh
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9564 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
2011-06-20 23:08:09 +00:00

17 lines
271 B
Bash
Executable File

#!/bin/bash
if [ $# -lt 1 ] ; then
echo "This script needs the location of the fo file to update"
exit 1
fi
FILE=$1
LINE=$( grep -n "DO NOT EDIT" $FILE | cut -f1 -d: )
LINE=$(( LINE - 1 ))
# Not needed
#sed -i -e "$LINE s/monospace/&\" font-size=\"9pt/" $FILE