Deprecated: Use of ParserOutput::getProperty was deprecated in MediaWiki 1.38. [Called from MediaWiki\Skin\Cosmos\CosmosHooks::onOutputPageParserOutput in /var/www/html/doc/skins/Cosmos/includes/CosmosHooks.php at line 81] in /var/www/html/doc/includes/debug/MWDebug.php on line 377
Running a for loop over an array - PhenixOps
Anonymous
×
Create a new article
Write your page title here:
We currently have 27 articles on PhenixOps. Type your article name above or click on one of the titles below and start writing!



PhenixOps
27Articles

Running a for loop over an array

Use this helpful bash script to check out information for multiple domains.

!/bin/bash

Declare the string array
SitesArray=("www.domain_1.nl" "www.domain_2.nl" "www.domain_3.nl")

Print array values in lines
echo "-----------------------------------------------------------------------------------------------------" for val1 in ${SitesArray[*]}; do echo "Information for $val1" openssl s_client -showcerts -connect $val1:443 2>/dev/null < Q.txt| openssl x509 -noout -issuer -subject -dates echo " " done