
Former-commit-id: 9a267727234dc9026ce3a54f543e62d8f609945a Former-commit-id: 556a34a214aea8824f34d4a2c117f09527d88146
25 lines
310 B
Bash
Executable File
25 lines
310 B
Bash
Executable File
#
|
|
# summarize comparison
|
|
#
|
|
# run after go_compare.sh
|
|
#
|
|
# usage: go_summarize.sh *.cmp
|
|
#
|
|
#
|
|
unsetenv ORG_SOURCED
|
|
|
|
setenv ORG_HOME `dirname $0`/../../../..
|
|
source $ORG_HOME/scripts/csh_init.sh
|
|
|
|
NeedArg 1
|
|
|
|
egrep '^#|^MATCH' $* | awk -f $LIB_DIR/summary.cmp.awk > compare.txt
|
|
|
|
$LIB_DIR/summarize_cmp.r
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
|