⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 install.sh

📁 speech signal process tools
💻 SH
字号:
#!/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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -