# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "unix/:7100"
EndSection
用sed的s和i就可以:如
$sed -e '4i\ #此处回车
> PATH=XXXX' -e 's/Load "freetype"/#Load "freetype"/' aa >tmp;rm aa;mv tmp aa
$cat aa
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.
PATH=XXXX
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "unix/:7100"
EndSection