- 论坛徽章:
- 0
|
谢谢各位的热心,再看ABS,刚刚写了个小脚本已经可以work了,HOHO
是个检查id重复问题的。。。- #!/usr/bin/sh
- # Temporary file to hold EUIs
- tmpfile=/tmp/eui_count.$$.txt
- dbfile=/tmp/eui_count.db.txt
- # Tidy up if interrupted
- trap "rm $tmpfile; exit" 1 2 15
- # Remove temporary file if it already exists
- if [ -f $tmpfile ]
- then
- rm $tmpfile
- fi
- #get orginal database EUI counter
- org_count=0
- if [ -f $dbfile ]
- then
- org_count=`grep partid $dbfile | sort | uniq | wc -l`
- fi
- # Process each file passed on the command line
- # Uncompress to stdout, extract strings and grep out those that match
- # the partid string and have a correct header on the EUI
- for file in $*
- do
- echo $file
- uncompress -c $file | strings | grep '<cmd> partid = 000d6f' >> $tmpfile
- uncompress -c $file | strings | grep '<cmd> partid = 000d6f' >> $dbfile
- done
- # sort and remove duplicates, then count lines to estimate unique EUIs
- count=`grep partid $tmpfile | sort | uniq | wc -l`
- #get current database EUI counter
- cur_count=`grep partid $dbfile | sort | uniq | wc -l`
- #calculate new added database EUI counter
- #if gap_count less then count, then need to check repeat id issue
- let gap_count=$[cur_count-org_count]
- echo "OrgDB EUI count = $org_count"
- echo "CurDB EUI count = $cur_count"
- echo "GapDB EUI count = $gap_count"
- echo "Unique EUI count = $count"
- # Tidy up
- if [ -f $tmpfile ]
- then
- rm $tmpfile
- fi
- #
复制代码 |
|