Loop through a list of domains
This commit is contained in:
parent
3ee7a8f174
commit
1e3d923460
2 changed files with 9 additions and 0 deletions
3
ssl.list
Normal file
3
ssl.list
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
digitalocean.com
|
||||||
|
devdojo.com
|
||||||
|
google.com
|
6
ssl_check_loop.sh
Normal file
6
ssl_check_loop.sh
Normal 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
|
Loading…
Reference in a new issue