install.sh
来自「speech signal process tools」· Shell 代码 · 共 52 行
SH
52 行
#!/bin/sh## Install the docs#DOCDIR=`get_esps_base`/docif test ! -d $DOCDIR then echo $DOCDIR does not exist, check install scripts or seek help exit 1fiif test x$MANMOD = x then MANMOD=0640fiecho Comparing dates of files here and in $DOCDIRecho This might take a while....for name in $* do srcname=$name.*me* if newer $srcname $DOCDIR/$srcname then echo Updating $srcname... case $name in history) set -x refer -n -p esps.refs -e history.prme | \ nroff -me -D'prersterization on' \ | col | ul -tadm3a > $DOCDIR/$name.doc set +x ;; intro) set -x refer -n -p esps.refs -e $srcname | \ nroff -me -n | col | ul -tadm3a > $DOCDIR/$name.doc set +x ;; *) set -x typeset -n $srcname | col | ul -tadm3a > $DOCDIR/$name.doc set +x ;; esac fidoneexit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?