| 123456789101112131415161718192021222324252627282930313233 | #! /bin/shls src/civetweb.cif [ "$?" = "0" ]; then	echo "Building files for coverity check ..."else	echo "Run this script from the root directory of project!" 1>&2	echo "username@hostname:/somewhere/civetweb$ ./resources/coverity_check.sh" 1>&2	exit 1firm -rf cov_int/make clean../cov-analysis-linux64-7.6.0/bin/cov-build  --dir cov-int make WITH_IPV6=1 WITH_WEBSOCKET=1 WITH_LUA_SHARED=1rm civetweb_coverity_check.tgztar czvf civetweb_coverity_check.tgz cov-intechols -la civetweb_coverity_check.tgzif [ "$?" = "0" ]; then	echo "... done"        echoelse	echo "No civetweb_coverity_check.tgz file" 1>&2        echo	exit 1fiexit 0
 |