Last active
December 14, 2015 11:59
-
-
Save atlefren/5082997 to your computer and use it in GitHub Desktop.
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
| #!/bin/sh | |
| q="" | |
| if [ $1 = "hjem" ] | |
| then | |
| q="rotvoll vestlia" | |
| elif [ $1 = "sentrum" ] | |
| then | |
| q="rotvoll sentrum" | |
| else | |
| for var in "$@" | |
| do | |
| q+="$var " | |
| done | |
| fi | |
| echo "Asking bussTUC: $q" | |
| curl -d "service=routeplannerOracle.getOracleAnswer&question=$q" https://www.atb.no/xmlhttprequest.php | |
| echo "" | |
| exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment