just a snippet: dialogs in linux

just a small snippet for linux fun lovers. gl+hf

#!/bin/bash
{ i=0
while [ $i -lt 100 ]
do
echo $i
sleep 0.1
i=`expr $i + 1`
done
echo;
} | dialog –guage “Loading…” 30 70 0


About this entry