Search for merge conflicts by using grep and the pattern '>>>>' which is common to VCS systems such as Git, SVN, and Perforce.
Default use recursively searches based on your current folder:
$ ./conflicts.sh
Checking for conflicts in *
I've got 99 problems but merge conflicts ain't 1 :)
Alternatively you can specify a specific folder
$ ./conflicts.sh -t development/js
Checking for conflicts in development/js/*
I've got 99 problems but merge conflicts ain't 1 :)