Merge branch 'master' of github.com:OpenFOAM/OpenFOAM-2.0.x
[OpenFOAM-2.0.x.git] / doc / tools / find-its
blob7f8996b32b13c6c40ff3c29e50b54fddc50925be
1 #!/bin/sh
2 # -----------------------------------------------------------------------------
3 # Script
4 # find-its
6 # Description
7 # Search for files with "it's"
8 # This contraction (== "it is") looks too much like "its" (possesive)
9 # and confuses non-native (and some native) English speakers.
11 # -----------------------------------------------------------------------------
12 set -x
13 cd $WM_PROJECT_DIR || exit 1
15 git grep -e "it's"
17 #------------------------------------------------------------------ end-of-file