2015-11-11 18:51:15 +01:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2015-11-13 17:41:18 +01:00
|
|
|
Notify "text file: compare.txt"
|
|
|
|
|
2015-11-11 18:51:15 +01:00
|
|
|
$LIB_DIR/summarize_cmp.r
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
|