raw2nist.sh
来自「speech signal process tools」· Shell 代码 · 共 37 行
SH
37 行
#! /bin/sh## Converts raw data to Sphere format speech file.# Uses h_add and h_edit.if [ $# -lt 2 ]; then echo "raw2nist { infile | - } outfile [h_edit options]" >&2 exit 1fiIN="$1"OUT="$2"shift 2if [ "X${OUT}" = X- ]; then echo "raw2nist { infile | - } outfile [h_edit options]" >&2 exit 1fih_add "${IN}" "${OUT}"S=$?if [ "${S}" -ne 0 ]; then rm -f "${OUT}" exit "${S}"fiif [ $# -ne 0 ]; then h_edit "$@" "${OUT}" S=$? if [ "${S}" -ne 0 ]; then rm -f "${OUT}" exit "${S}" fifiexit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?