mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-18 13:07:50 +00:00
16 lines
267 B
Bash
16 lines
267 B
Bash
|
#!/bin/bash --verbose
|
||
|
|
||
|
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 ))
|
||
|
|
||
|
sed -i -e "$LINE s/monospace/&\" font-size=\"9pt/" $FILE
|
||
|
|