unglitch.sh

来自「su 的源代码库」· Shell 代码 · 共 53 行

SH
53
字号
#! /bin/sh# /*********************** self documentation **********************/# UNGLITCH - zonk outliers in data## Usage: unglitch < stdin## Note: this shell just invokes:  sugain < stdin qclip=.99 > stdout# See selfdoc of:   sugain   for further information# /**************** end self doc ********************************/# $Source: /usr/local/cwp/src/su/shell/RCS/unglitch.sh,v $# $Revision: 1.9 $ ; $Date: 1999/05/12 20:15:48 $# test for CWPROOTif test "${CWPROOT}" = ""then	echo "The environment variable \"CWPROOT\" "	echo "is not set in the user's working shell environment."	echo "To set this variable in C-shell, use the command: "	echo "  setenv  CWPROOT  /your/cwp/root/path"	echo "To set this variable in Bourne or Korn-shell, use the command:"	echo "  export  CWPROOT=/your/cwp/root/path" ; exit 1fiROOT=${CWPROOT}BIN=$ROOT/binPATH=${PATH}:${BIN}cmd=`basename $0`CLIPLEVEL=0.99case $1 in-)        echo "Usage: $cmd <stdin" 1>&2; exit 1;;esaccase $# in0)	# Correct usage: cmd <file or ... | cmd ...	sugain qclip=$CLIPLEVEL;;1)	# Also accept usage: cmd filename	sugain <$1 qclip=$CLIPLEVEL;;*)        echo "Usage: $cmd <stdin" 1>&2; exit 1;;esacexit 0

⌨️ 快捷键说明

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