GNOME Bugzilla – Bug 559759
Zenity progress do not show progress and download speed
Last modified: 2010-01-17 22:23:33 UTC
this report has been filed here: https://bugs.edge.launchpad.net/ubuntu/+source/zenity/+bug/294498 "I am piping a download progress using below script: wget -nd -c --read-timeout=300 --retry-connrefused --header "Accept-Encoding: gzip,deflate" http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_10_linux.tar.gz 2>&1 | sed -u 's/.*\ \([0-9]\+%\)\ \+\([0-9.]\+\ [KMB\/s]\+\)$/\1\n# Downloading \2/' | zenity --progress --auto-close --title="Downloading File..." It works on GNOME 2.22, but not on 2.24. " Thanks,
""" Thank you for your feedback and you are right. After I downgrade to wget 1.10.2, it works. So I edited the script as follow: wget -nd -c --read-timeout=300 --retry-connrefused --header "Accept-Encoding: gzip,deflate" http://www.tartet.com/target_file 2>&1 | sed -u 's/.*\ \([0-9]\+%\)\ /\1\n# Downloading /' | zenity --progress --auto-close --title="Downloading File..." The new script works with both wget 1.10.2 and the new one (wget 1.11.4). """ Closing as INVALID.