Created
July 2, 2010 09:29
-
-
Save zahardzhan/461147 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
########################### | |
### Copyright Denis Popov 2010 ## | |
### Downloader files from ## | |
### The HTTP/FTP ## | |
########################### | |
get_information() | |
{ | |
dirdownload=$(zenity --entry --title "Quadregus Downloader" --text "Write folder for downloading file" --width 300) | |
linktodownload=$(zenity --entry --title "Quadregus Downloader" --text "Write link downloading file" --width 300) | |
} | |
process_downloading() | |
{ | |
cd $dirdownload | |
wget $linktodownload 2>&1 | zenity --progress --title "Quadregus Downloader" --text "Downloading file" --pulsate --auto-close --width 400 | |
} | |
ending() | |
{ | |
echo "all files downloaded" | |
} | |
get_information | |
process_downloading | |
ending | |
#############END############ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ололо!