2010-08-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* lib/CheckConflicts.sh: New file.
This commit is contained in:
parent
f6ce088fb3
commit
59ecc5766c
|
@ -1,3 +1,7 @@
|
||||||
|
2010-08-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
|
||||||
|
|
||||||
|
* lib/CheckConflicts.sh: New file.
|
||||||
|
|
||||||
2010-08-21 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
|
2010-08-21 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
|
||||||
|
|
||||||
* lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose,
|
* lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose,
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ $# -ne 2 ]
|
||||||
|
then
|
||||||
|
echo "Usage: $0 pattern_file check_file"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
for pattern in `cat $1 | cut -f1 -d'@'`
|
||||||
|
do
|
||||||
|
grep -Hwrn --color --exclude=$1 $pattern $2
|
||||||
|
done
|
Loading…
Reference in New Issue