Add '27-01-2021-grepString/grepHttp.sh'

new script for searching  "http://" string
This commit is contained in:
Roberto Cirillo 2021-02-12 17:17:42 +01:00
parent a4e316e732
commit b45ff1a8cd
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
if [[ "$(grep -r 'http://' .)" ]]; then
echo "http protocol found"
else
echo "http protocol not found"
fi