aboutsummaryrefslogblamecommitdiff
path: root/contrib/dialog/samples/progress
blob: 6ad45d8b04c64c9cdf2f561297313cace3225c93 (plain) (tree)


















                                                   
#!/bin/sh
# $Id: progress,v 1.5 2010/01/13 10:20:03 tom Exp $

. ./setup-vars

. ./setup-tempfile

ls -1 >$tempfile
(
while true
do
read text
test -z "$text" && break
ls -ld "$text"
sleep 1
done <$tempfile
) |

$DIALOG --title "PROGRESS" "$@" --progressbox 20 70