For example:
wget http://somesite.com/TheFile.jpeg
downloading: TheFile.tar.gz ... --09:30:42-- http://somesite.com/TheFile.jpeg
This is another exemple, maybe will help you
download() { local url=$1 echo -n " " wget --progress=dot $url 2>&1 | grep --line-buffered "%" | sed -u -e "s,\.,,g" | awk '{printf("\b\b\b\b%4s", $2)}' echo -ne "\b\b\b\b" echo " DONE" }