]> git.evergreen-ils.org Git - working/Evergreen.git/blob - build/tools/script_x_check.sh
18e892a6f52788bf056360354aa470e3f850c964
[working/Evergreen.git] / build / tools / script_x_check.sh
1 #!/bin/bash
2 #
3 # Author: Joe Atzberger
4 # Purpose: identify files that should be executable, but aren't.
5 #
6 # usage: run this from the base directory of your repo,
7 #   or wherever you want to check, inclusive of subdirectories
8
9 find . \( -name "*.pl" -o -name "*.sh" -o -name "*.py" \) ! -executable -ls
10