Speed measuring script for Ericsson W25
Earlier I had speed problems with my unit and I wanted to make sure if it is only perception or if it is a real speed problem. The concept what I have implemented was, that the unit should make a test every 15 minutes to check the download speed of the cellular connection. Then the result with some other relevant information is added to a file stored on the external USB flash drive. So here is the script: wget -q -O /dev/null http://www.ericssonw25.com/pdf/w25_V1.2_R6A019.zip & wget -q -O /dev/null http://www.ericssonw25.com/pdf/W25_Users_Guide_D.pdf & wget -q -O /dev/null http://www.ericssonw25.com/pdf/W25_Users_Guide_C.pdf & sleep 3; bejovo=`cat /proc/net/dev |grep ppp0 |cut -d":" -f2 |awk '{print$1}'`; sleep 5; bejovo1=`cat /proc/net/dev |grep ppp0|cut -d":" -f2 |awk '{print$1}'`; kill `pidof wget` echo `date '+%Y.%m.%d %H:%M'` `echo $bejovo $bejovo1 |awk '{print (($2-$1))/640}'` kbps `msctl rscp...