📄 reopendefect.sh
字号:
#!/bin/ksh## SAMPLE NAME: reopenDefect## FUNCTIONS: This sample shell script reopens a previously cancelled or# returned defect## USAGE: reopenDefect defectNumber## ENVIRONMENT# VARIABLE(S): CMVC_FAMILY [CMVC_BECOME]## ORIGINS: 27## 5765-039 (C) COPYRIGHT International Business Machines Corp. 1991,1995# 5765-207 (C) COPYRIGHT International Business Machines Corp. 1993,1995# 5765-202 (C) COPYRIGHT International Business Machines Corp. 1993,1995# 5622-063 (C) COPYRIGHT International Business Machines Corp. 1993,1995# 5765-069 (C) COPYRIGHT International Business Machines Corp. 1991,1995# All Rights Reserved# Licensed Materials - Property of IBM## US Government Users Restricted Rights - Use, duplication or# disclosure restricted by GSA ADP Schedule Contract with IBM Corp.### NOTICE TO USERS OF THE SOURCE CODE EXAMPLES## INTERNATIONAL BUSINESS MACHINES CORPORATION PROVIDES THE SOURCE CODE# EXAMPLES, BOTH INDIVIDUALLY AND AS ONE OR MORE GROUPS, "AS IS" WITHOUT# WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT# LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A# PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE# OF THE SOURCE CODE EXAMPLES, BOTH INDIVIDUALLY AND AS ONE OR MORE GROUPS,# IS WITH YOU. SHOULD ANY PART OF THE SOURCE CODE EXAMPLES PROVE# DEFECTIVE, YOU (AND NOT IBM OR AN AUTHORIZED RISC System/6000* WORKSTATION# DEALER) ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR# CORRECTION.## * RISC System/6000 is a trademark of International Business Machines# Corporation.## /usr/lpp/cmvc/samples/reopenDefect##-----------------------------------------------------# SCCS keyword @(#)09 1.2 1/8/03#-----------------------------------------------------TEXT=/tmp/def$$COMMAND=/tmp/com$$#EDITOR=${EDITOR:-"vi"}#cleanup(){ rm -f $TEXT 2>/dev/null rm -f $COMMAND 2>/dev/null}trap 'echo "\n$0: Interrupted."; cleanup; exit 1' 2 3 15if [ $# -eq 0 ]then echo "\nusage: $0 defectNumber\n" echo "This sample shell script reopens a previously cancelled or" echo "returned defect.\n" exit 1fiif [ -z "$CMVC_FAMILY" ]then echo "The CMVC family must be set with the CMVC_FAMILY environment variable." exit 1fi#-----------------------------------------------+# Start the command off. |#-----------------------------------------------+echo "Defect -reopen $1\c" >$COMMAND#-----------------------------------------------+# Get the textual remarks. |#-----------------------------------------------+echo "The \"$EDITOR\" editor is being invoked so you may enter remarks."sleep 1$EDITOR $TEXTecho " -remarks - < $TEXT\c" >>$COMMANDecho >>$COMMANDCLEAN=`cat $COMMAND | awk '{printf("%s",$0)}'`#-----------------------------------------------+# Run the command. |#-----------------------------------------------+echo "\nRunning..."echo "$CLEAN"sh -c "$CLEAN"cleanupexit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -