Skip to content

Instantly share code, notes, and snippets.

@leogallego
Last active September 13, 2018 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leogallego/fb2e2566c6804ff5b1a0063da0d70dff to your computer and use it in GitHub Desktop.
Save leogallego/fb2e2566c6804ff5b1a0063da0d70dff to your computer and use it in GitHub Desktop.
#!/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