Skip to content

Instantly share code, notes, and snippets.

@numpad0
Created May 4, 2017 16:07
Show Gist options
  • Save numpad0/b89c8c1f4f04248b415d56db536efb6c to your computer and use it in GitHub Desktop.
Save numpad0/b89c8c1f4f04248b415d56db536efb6c to your computer and use it in GitHub Desktop.
#!/bin/sh
json=$(wget http://himawari8-dl.nict.go.jp/himawari8/img/D531106/latest.json -O - )
url=$(echo "$json" | sed -e s/^.........// -e 's/\".*$//' -e s/-/'\/'/g -e s/\ /'\/'/g -e s/://g)
base="http://himawari8-dl.nict.go.jp/himawari8/img/D531106/1d/550/"
suff="_0_0.png"
url=$base$url$suff
echo $url
#wget $url
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment