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

📄 unglitch.sh

📁 su 的源代码库
💻 SH
字号:
#! /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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -