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

📄 sdconvert

📁 speech signal process tools
💻
字号:
#!/bin/sh# @(#)sdconvert	1.2 5/19/86 EPI## sdconvert.  This simple script just uses sdssdtoa and atosps to# convert sds sampled data file to sps.# It is dumb, in that it only works with two args, that are taken as# input and output file.  If you want something else, use the commands# directly.if test $# != 2 then  echo $0: need two arguments  exit 1fiif test $1 = $2 then echo $0: arg1 cannot be the same as arg2 exit 1fi/usr/sps/bin/sdssdtoa $1 | /usr/sps/bin/atosps - $2

⌨️ 快捷键说明

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