-
-
Save johndonnelly/5fb0d361cf3ebbe6ab1829bc3ae6d251 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$data = Invoke-WebRequest https://www.sqlshack.com/top-50-powershell-bloggers-of-2018/ | |
$data.Links.Where({ $_.href -like "*http*" -and | |
$_.href -notlike "*twitter*" -and | |
$_.href -notlike "*sql*" -and | |
$_.href -notlike "*creativecomm*" -and | |
$_.href -notlike "*microsoft*" | |
}) | Select-Object href -Unique -ExpandProperty href |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment