Hello
When Spark was Telecom, I used to use the following command in a perl script to get the data usage.
I have a USB mobile modem running on a remote headless server.
I want to be able to know how much data is left on my plan so I can throttle the data flow if needed.
my $url = "http://m.telecom.co.nz/yt";
my $line = `wget $url -q --delete-after -nd -O - | grep " remaining MB"`;
What url and command would I now use????
Dazz