Last active
December 31, 2015 03:38
-
-
Save Raidok/7928515 to your computer and use it in GitHub Desktop.
Parsib https://rent.elmo.ee lehelt välja rendipunktid ja neis olevad vabad autod
This file contains 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 | |
ON1=`echo "\033[44m\033[37m"` | |
ON2=`echo "\033[34m"` | |
OFF=`echo "\033[0m"` | |
curl https://rent.elmo.ee 2>&1 | sed -n "/metronic_v1.1/,/END JAVASCRIPTS/p" | sed -n -e "s/.*title: \"\(.\+\)\".*/\n$ON1\1$OFF/p" -e "s/.*car_fullname='\" + \"\(.\+\)\" + \"' car_battery='\" + \"\(.\+\)\" + \"' val='\".*/\1 $ON2\2%$OFF/p" | |
echo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment