I'm having a hard time using knowing if it is possible to have a clue on my download speed using WGET.
To run my gets I use the following command :
wget -c -b http://mylink.com
So it runs in background BUT I can still have access to its PID.
What I was wondering is :
If I have the PID, do I have the possibility to attach anything to the process in order to check the speed ?
What if I use the following :
screen -dmS MYDOWNLOADPROCESS_XXXXX wget -c http://mylink.com
Is there a way I can retrieve stuffs even if its running in DEAMON ? Cause it seems I can't attach it back... :(