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

Revision as of 15:24, 20 April 2020 by Phenixops (talk | contribs) (Created page with "<code> #!/bin/bash #Declare the string array SitesArray=("www.pladder.nl" "www.lostlemon.nl" "www.nvsi.nl" "www.lostlemon.nl" "www.loketschuldhulpverlening.nl" "www.bereken...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

  1. !/bin/bash
  1. Declare the string array

SitesArray=("www.pladder.nl" "www.lostlemon.nl" "www.nvsi.nl" "www.lostlemon.nl" "www.loketschuldhulpverlening.nl" "www.berekenuwrechtplus.nl" "www.e-kracht.nl" "www.erow.nl" "prod.jongerencentraal.nl" "lldorado.lostlemon.nl" "www.e-inwoner.nl" "www.toolkiteformulieren.nl" "www1.nvsi.nl" "www2.nvsi.nl" "yasmin.pladder.nl" "vpn01.lostlemon.nl")

  1. 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