2

I often download files using wget and cURL.

Is there anyway I can make my Linux box give a visual alert when either of those processes exit (i.e: the download completes)

PS : I am using Ubuntu oneiric ocelot x86 and I switch between Unity and Gnome Shell.

Gautam
  • 2,295
  • 5
  • 18
  • 18

1 Answers1

5

You could use something like zenity or xmessage. For example:

wgetmsg() {
    wget "$@" && zenity --info --text='Wget returned success.' || zenity --error --text='Wget returned failure.'
}

wgetmsg -O filename http://www.example.com
Chris Down
  • 122,090
  • 24
  • 265
  • 262