Loop through a list of domains

This commit is contained in:
Bobby Iliev 2021-11-24 15:36:03 +00:00
parent 3ee7a8f174
commit 1e3d923460
2 changed files with 9 additions and 0 deletions

3
ssl.list Normal file
View file

@ -0,0 +1,3 @@
digitalocean.com
devdojo.com
google.com

6
ssl_check_loop.sh Normal file
View file

@ -0,0 +1,6 @@
#! /bin/bash
for websiteurl in $(cat ./ssl.list) ; do
echo loop start for $websiteurl
./ssl $websiteurl
echo loop end for $websiteurl
done