Created
September 13, 2018 18:19
-
-
Save leogallego/8920bbfca68ab56cd5ed68c647cebfde 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 "BNA cotizacion `date` -----> " ; | |
curl http://www.bna.com.ar/Personas 2> /dev/null | grep -a \<td| sed '3q;d'|sed 's|<[^>]*>||g' | sed -e 's/^[ \t]*//'; | |
sleep 30; | |
done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment