Skip to content

Instantly share code, notes, and snippets.

View SeaPhor's full-sized avatar

Shawn Miller SeaPhor

View GitHub Profile
@Gregsen
Gregsen / dialog_progressbar.sh
Created December 6, 2013 11:40
A nice progressbar for downloads using wget and Dialog.
#!/bin/bash
# heavily inspired by http://fitnr.com/showing-file-download-progress-using-wget.html
URL=<YOUR DOWNLOAD URL>
wget --progress=dot "$URL" 2>&1 |\
grep "%" |\
sed -u -e "s,\.,,g" | awk '{print $2}' | sed -u -e "s,\%,,g" | dialog --gauge "Download Test" 10 100