<================================================================>
#查找重复单词, 不能处理换行重复
egrep -i '\<([a-z]+) +\1\>' ufiles
<================================================================>
#查找2个文件中相同行
egrep -f fileA fileB
#查找2个文件中不同行
egrep -vFf fileA fileB
#-F, --fixed-strings PATTERN is a set of newline-separated strings
#-f, --file=FILE obtain PATTERN from FILE
#-v, --invert-match select non-matching lines
<================================================================> #查找空缺的case id 号
#get the absent number sequence
egrep -o 'TCF-[R|N]-5[0-9]{3}' *TracingTable | awk -F'-' '{print $NF}'|sort |uniq \\
|awk '{if ( $0>5000&&$0<5500 ) {print $0} }' \\
|awk '{a[NR]=$0; if (NR!=1 && a[NR]!=a[NR-1]+1) { print ($0-1)} }' > ID_available_list
<================================================================>
阅读(1478) | 评论(0) | 转发(0) |