diff options
author | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2010-08-22 04:03:33 +0000 |
---|---|---|
committer | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2010-08-22 04:03:33 +0000 |
commit | 59ecc5766c34a317e914e09bb94c894e645a3b14 (patch) | |
tree | d26fbf4997e3ee85fed604bb47c8f10cf97f7209 | |
parent | f6ce088fb3977eea92214230de20e4bda6ad6e3c (diff) | |
download | cygnal-59ecc5766c34a317e914e09bb94c894e645a3b14.tar.gz cygnal-59ecc5766c34a317e914e09bb94c894e645a3b14.tar.bz2 cygnal-59ecc5766c34a317e914e09bb94c894e645a3b14.zip |
2010-08-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* lib/CheckConflicts.sh: New file.
-rw-r--r-- | winsup/w32api/ChangeLog | 4 | ||||
-rwxr-xr-x | winsup/w32api/lib/CheckConflicts.sh | 12 |
2 files changed, 16 insertions, 0 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 19b3c7b13..d9552cd1f 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -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, diff --git a/winsup/w32api/lib/CheckConflicts.sh b/winsup/w32api/lib/CheckConflicts.sh new file mode 100755 index 000000000..8f424f69c --- /dev/null +++ b/winsup/w32api/lib/CheckConflicts.sh @@ -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 |