
Former-commit-id: 0579e878a69b7c285ca71870e9ca5730649a2fda Former-commit-id: 7cced5b488441d87bf070a9a444317db0e048880
27 lines
343 B
Bash
Executable File
27 lines
343 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
|
|
|
|
Notify "text file: compare.txt"
|
|
|
|
$LIB_DIR/summarize_cmp.r
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
|