/usr/share/bibledit/obfuscate/check.sh is in bibledit-data 5.0.453-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | #!/bin/bash
# Checks for certain words whether they occur in the filenames.
# Do not look in the source code because it is to be removed after build.
find . -name "*bible*" ! -name "*.cpp" ! -name "*.h" ! -name "*.Po" ! -name "*.o" ! -name "*.xccheckout" ! -name "*.xcscheme"
find . -name "*Bible*"
|