Help to create bash script-based gui
Hello everybody!
I am a newie at bash scripts, and I would like to know how to create a panel-based script to create executable files with wget, to mass-download lists of files.
So far, all I have been able to create is this:
!bin/bash
cd ~/ mkdir ~/Downloads/ cd ~/Downloads/ wget -options http://www.someweb.com/some-directory/ exit
I'd like to create something similar to this, but with a graphic enviroment and with a progress bar that is not the tipical [===> ] progress bar.
Thanks.