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

📄 isip_function_help_0.sh

📁 这是一个从音频信号里提取特征参量的程序
💻 SH
字号:
#! @SH@# file: $ISIP/util/misc/isip_help/isip_help_function_0.sh## a simple, standard method of displaying a help message# important definitions#PROGRAM_NAME="isip_help_function_0";DEFAULT_ISIP_HELP_OPTION="-help";DEFAULT_ISIP_HELP_COMMAND="more";ISIP_ERROR="1";ISIP_NOERROR="0";# check for the existence of the appropriate environment variables#ISIP_HELP_OPTION=${ISIP_HELP_OPTION:-"$DEFAULT_ISIP_HELP_OPTION"};ISIP_HELP_COMMAND=${ISIP_HELP_COMMAND:-"$DEFAULT_ISIP_HELP_COMMAND"};if (test ! -f "$ISIP_HELP_FILE") then    echo "<$PROGRAM_NAME> an appropriate help file does not exist ($ISIP_HELP_FILE)";    exit $ISIP_ERROR;fi# define a help function#display_help_message_0 () {    $ISIP_HELP_COMMAND $ISIP_HELP_FILE;    exit $ISIP_ERROR;}# check for an argument requesting help - display message and exit#for arg do    if (test "$arg" = "$ISIP_HELP_OPTION") then	display_help_message_0;    fidone# end of fileexit $ISIP_NOERROR;

⌨️ 快捷键说明

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