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

📄 guess_audio

📁 speech signal process tools
💻
字号:
#! /bin/sh# @(#)guess_audio	1.3 9/30/93 ERL#link in the right play program based on what devices we see#the argument $1 to this script is the directory in which the link#can be put (which of course should be on the path) ebin=`get_esps_base`/bindbin=$1arch=`$ebin/mach_type`#no_play - the default    rm -f $dbin/play    ln -s bin/null_play $dbin/playif test $arch = "SUN4"then#Ariel S-Bus board on a sparcstation	if test -c /dev/s32c0 	then	    rm -f $dbin/play	    ln -s $ebin/s32cplay $dbin/play	    exit	fi#LSI C30 Board on a sparcstation	if test -c /dev/LSIsdsp30	then	    rm -f $dbin/play	    ln -s $ebin/c30play $dbin/play	    exit	fi#AT&T Fab2, AT&T/Heurikon Surf	if test -c /dev/dsp3 -o -c /dev/dc0	then	    rm -f $dbin/play	    ln -s $ebin/v32play $dbin/play	    exit	fi#Sparcstation codec	if test -c /dev/audio 	then	    rm -f $dbin/play	    ln -s $ebin/splay $dbin/play	    exit	fifiif test $arch = "SG"then#SGI Indigo workstation with built-in I/O	if test -c /dev/hdsp/hdsp0master 	then	    rm -f $dbin/play	    ln -s $ebin/sgplay $dbin/play	    exit	fifiif test $arch = HP700then#HP  700	if test -c /dev/audio	then	    rm -f $dbin/play	    ln -s $ebin/hpplay $dbin/play	    exit	fifi

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -