I want to display the progress of wget using dialog box(gauge).
wget
gauge
I found one solution on this site but it is not showing upto 100 percent. After
URL="http://upload.wikimedia.org/wikipedia/commons/4/4e/Pleiades_large.jpg" wget "$URL" 2>&1 | \ stdbuf -o0 awk '/[.] +[0-9][0-9]?[0-9]?%/ { print substr($0,63,3) }' | \ dialog --gauge "Download Test" 10 100