-
-
Save alpancs/ba9c8419e54eafa3babf922f01cb685d to your computer and use it in GitHub Desktop.
Next Prayer Time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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