Skip to content

Instantly share code, notes, and snippets.

@stej
Created February 13, 2011 20:47
Show Gist options
  • Save stej/825104 to your computer and use it in GitHub Desktop.
Save stej/825104 to your computer and use it in GitHub Desktop.
$r = [regex]'contentBox=(?<url>http://www.fatrafloor.cz/uploads/thumbnails/thumbnail-800600[^"]*)"'
$d = (new-object Net.WebClient).DownloadString('http://www.fatrafloor.cz/cz/thermofix/kolekce-drevo/')
$r.Matches($d) |
% { $_.Groups["url"].Value } |
% { Start-Process $_ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment