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

📄 recip.sh

📁 su 的源代码库
💻 SH
字号:
#! /bin/sh# /*********************** self documentation **********************/# RECIP - sum opposing (reciprocal) offsets in cdp sorted data## Usage: recip <stdin >stdout## /**************** end self doc ********************************/# $Source: /usr/local/cwp/src/su/shell/RCS/recip.sh,v $# $Revision: 1.8 $ ; $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`tmp=/usr/tmp/$$.$cmd# Arrange to remove tmp at shell termination (0) or signal# Internal trap to ignore 0 is to avoid double remove in case of signaltrap "rm -f $tmp; trap '' 0; exit 1" 0 1 2 3 15case $1 in-)    	echo "Usage: $cmd <stdin >stdout" 1>&2; exit 1;;esaccase $# in0)	# Correct usage: cmd <file >stdout or ... | cmd ...	suabshw >$tmp	susort cdp offset <$tmp | surecip;;1)	# Also accept usage: cmd filename	suabshw <$1 >$tmp	susort cdp offset <$tmp | surecip;;*)    	echo "Usage: $cmd <stdin >stdout" 1>&2; exit 1;;esacexit 0

⌨️ 快捷键说明

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