📄 suagc.sh
字号:
#! /bin/sh #set -x# /*********************** self documentation **********************/# SUAGC - perform agc on SU data ## Note: this is an interface to sugain for backward compatibility# See selfdoc of: sugain for more information# /**************** end self doc ********************************/# Author: Jack# 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}OLDPROG=sugcNEWPROG=sugain#MESSAGE="!!!!!Note: $OLDPROG has been replaced by $NEWPROG!!!!!"case $# in 0) $NEWPROG echo $MESSAGE 1>&2 ; exit 1 ;; *) $NEWPROG gagc=1 wagc=.2 $* ; exit 0 ;;esacecho $MESSAGE 1>&2 exit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -