2010-08-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>

* lib/CheckConflicts.sh: New file.
This commit is contained in:
Chris Sutcliffe 2010-08-22 04:03:33 +00:00
parent f6ce088fb3
commit 59ecc5766c
2 changed files with 16 additions and 0 deletions

View File

@ -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>
* lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose,

View File

@ -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