I have a geektool script to check bitcoin buy price on coinbase, but it is not working.
curl --silent https://coinbase.com/charts | grep -E '(Buy Price <strong>|><BR)' | sed 's/[^.0-9]*//g' |
Do I need to install additional things to fix it or is my code just wrong? Thanks!
curl --silent https://coinbase.com/charts | grep -E '(Buy Price <strong>|><BR)' | sed 's/[^.0-9]*//g' |
Do I need to install additional things to fix it or is my code just wrong? Thanks!