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

9 lines
211 B
Bash

#!/usr/bin/env bash
out=`find . -name '*.java' -exec grep 'http://' /dev/null {} +`
echo "${out}"
if [[ "$(grep 'java' ${out})" ]]; then
echo "HTTP protocol found"
else
echo "HTTP protocol not found"
fi