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

9 lines
262 B
Bash
Raw Permalink Normal View History

#!/usr/bin/env bash
2021-02-17 15:35:05 +01:00
out=`find . -name '*.java' -exec grep 'http://' /dev/null {} + || echo 'empty'`
if [[ ["${out}" != "empty"] && "$(grep '\.java' <<< ${out})" ]]; then
echo "${out}"
2021-02-16 21:15:09 +01:00
echo "HTTP protocol found"
else
echo "HTTP protocol not found"
fi