Skip to content

Instantly share code, notes, and snippets.

@alpancs
Last active October 17, 2018 15:13
Show Gist options
  • Select an option

  • Save alpancs/ba9c8419e54eafa3babf922f01cb685d to your computer and use it in GitHub Desktop.

Select an option

Save alpancs/ba9c8419e54eafa3babf922f01cb685d to your computer and use it in GitHub Desktop.
Next Prayer Time
npt() {
# id=87 for Jepara
for t in `curl -s 'https://jadwalsholat.org/adzan/monthly.php?id=87' | grep 'table_highlight' | sed -e 's/<[^>]*>/ /g' | sed -e 's/\(^ *\)\|\( *$\)//g' | sed -e 's/ */\n/g' | tail -n +3`
do
if [[ $t > `date +"%H:%M"` ]]
then
echo $t
break
fi
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment