Last active
July 6, 2020 18:40
-
-
Save manobi/db13bd742690e6974d7fe5276f3fc789 to your computer and use it in GitHub Desktop.
Baixar imagens
This file contains hidden or 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
foreach($line in Get-Content .\file.txt) { | |
if($line -match $regex){ | |
curl -O $line | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment