Skip to content

Instantly share code, notes, and snippets.

@tatic0
Created September 8, 2012 13:44
Show Gist options
  • Save tatic0/3675062 to your computer and use it in GitHub Desktop.
Save tatic0/3675062 to your computer and use it in GitHub Desktop.
progress bar using zenity
zenity example
#!/bin/bash
# zen_prog_bar.sh
# progress bar example
for i in {1..100..10}; do echo $i; sleep 1; done | zenity --progress --percentage=0 --auto-close
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment