Created
March 17, 2012 12:17
-
-
Save gautamk/2058245 to your computer and use it in GitHub Desktop.
Script to display an alert message once downloads complete
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 | |
# | |
# Script to display an alert message once downloads complete | |
# Takes the same parameters as wget | |
# | |
wget $@ | |
wait | |
zenity --info --text="Download Complete" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment