Last active
September 13, 2018 18:21
-
-
Save leogallego/fb2e2566c6804ff5b1a0063da0d70dff 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/bash | |
while [ 1 ]; | |
do echo -n "RIO cotizacion `date` -----> " ; | |
curl https://banco.santanderrio.com.ar/exec/cotizacion/index.jsp 2> /dev/null | grep -a \<td\> | head -n 3 | cut -d " " -f 2 | cut -d "<" -f 1 | tail -n 1; | |
sleep 30; | |
done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment