install.texi2html
来自「理解和实践操作系统的一本好书」· TEXI2HTML 代码 · 共 47 行
TEXI2HTML
47 行
#!/bin/sh## Convert the GCC install documentation from texinfo format to HTML.## $SOURCEDIR and $DESTDIR, resp., refer to the directory containing# the texinfo source and the directory to put the HTML version in.## (C) 2001, 2003, 2006 Free Software Foundation# Originally by Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>, June 2001.## This script is Free Software, and it can be copied, distributed and# modified as defined in the GNU General Public License. A copy of# its license can be downloaded from http://www.gnu.org/copyleft/gpl.htmlset -eSOURCEDIR=${SOURCEDIR-.}DESTDIR=${DESTDIR-HTML}MAKEINFO=${MAKEINFO-makeinfo}if [ ! -d $DESTDIR ]; then mkdir -p $DESTDIRfi# Generate gcc-vers.texi.( echo "@set version-GCC $(cat $SOURCEDIR/../BASE-VER)" if [ "$(cat $SOURCEDIR/../DEV-PHASE)" = "experimental" ]; then echo "@set DEVELOPMENT" else echo "@clear DEVELOPMENT" fi echo "@set srcdir $SOURCEDIR/..") > $DESTDIR/gcc-vers.texifor x in index.html specific.html prerequisites.html download.html configure.html \ build.html test.html finalinstall.html binaries.html old.html \ gfdl.htmldo define=`echo $x | sed -e 's/\.//g'` echo "define = $define" $MAKEINFO -I $SOURCEDIR -I $SOURCEDIR/include $SOURCEDIR/install.texi -I $DESTDIR --html --no-split -D$define -o$DESTDIR/$xdonerm $DESTDIR/gcc-vers.texi
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?