>>586
powershellで
win7なら新しいバージョンを入れないと動かない

$url = 'URLを入れる'
$fileName = 'weather.txt'
$regex = 'src="https://static\.tenki\.jp/images/icon/forecast-point-weather/.+?><p.*?>(.+?)</p></td>'
$response = Invoke-WebRequest $url
[regex]::Matches($response.Content, $regex) | ForEach-Object { $_.Groups[1].Value }`
| Out-File -LiteralPath $fileName -Encoding default