Skip to content

Instantly share code, notes, and snippets.

@efontan
Created August 12, 2019 14:21
Show Gist options
  • Save efontan/f78c3454f936e90526e6fcfb42dfb7f3 to your computer and use it in GitHub Desktop.
Save efontan/f78c3454f936e90526e6fcfb42dfb7f3 to your computer and use it in GitHub Desktop.
Cotización del dólar minuto a minuto
#!/bin/bash
while true;
echo -n $(date '+%H:%Mhs ') " "
do curl https://banco.santanderrio.com.ar/exec/cotizacion/index.jsp 2> /dev/null | grep \<td\>| sed -n 3p|awk '{ gsub("[<td>\/]*[[:blank:]]*","");print}';
sleep 60;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment