gCubeActions/27-01-2021-grepString/grepUmaJwtTokenPrvider.sh

9 lines
219 B
Bash
Raw Normal View History

#!/usr/bin/env bash
out=`find . -name '*.java' -exec grep 'UmaJwtToken' /dev/null {} +`
if [[ -n "${out}" ]]; then
echo "UmaJwtToken class found in "
echo "${out}"
else
echo "UmaJwtToken class not found"
fi