Tweak german console example
[linux_from_scratch.git] / pdf-fixups.sh
blob23909014169b81adb7868685458b88a6f8328f2e
1 #!/bin/bash
3 if [ $# -lt 1 ] ; then
4 echo "This script needs the location of the fo file to update"
5 exit 1
6 fi
9 FILE=$1
11 LINE=$( grep -n "DO NOT EDIT" $FILE | cut -f1 -d: )
12 LINE=$(( LINE - 1 ))
14 # Not needed
15 #sed -i -e "$LINE s/monospace/&\" font-size=\"9pt/" $FILE
17 # Break a block of code at the right place
18 sed -i -e 's@gcc --version@<fo:block page-break-before="always"></fo:block>&@' $FILE