#!/bin/sh

echo -e "10\n20\n30\n40\n50\n60\n70\n80\n90\n95\n99\n100\n" | \
while read i; do echo $i; sleep 1s; done | \
./qdialog --icon /usr/share/pixmaps/pan.png --backtitle "test" --title "test" --gauge "test" 0 0

