Skip to content

Instantly share code, notes, and snippets.

@benridane
Created November 23, 2016 08:58
Show Gist options
  • Save benridane/df8a7e6eca7ba4bf69aab6ace655ba78 to your computer and use it in GitHub Desktop.
Save benridane/df8a7e6eca7ba4bf69aab6ace655ba78 to your computer and use it in GitHub Desktop.
#!/bin/bash
if [ -z $(echo $ABC) ];
then
#270000 Osaka
ABC=$(curl -s http://weather.livedoor.com/forecast/webservice/json/v1\?city\=270000 | jq -r '.forecasts[0].telop');
export ABC
fi
if [ $(expr $(date +'%M') / 4) == '0' ];
then
ABC=$(curl -s http://weather.livedoor.com/forecast/webservice/json/v1\?city\=270000 | jq -r '.forecasts[0].telop');
export ABC
fi
echo $ABC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment