2011-01-13 02:21:23 +00:00
|
|
|
#!/bin/sh
|
2018-10-20 20:32:57 +00:00
|
|
|
# $Id: progress2,v 1.7 2018/06/17 20:45:25 tom Exp $
|
2011-01-13 02:21:23 +00:00
|
|
|
|
|
|
|
. ./setup-vars
|
|
|
|
|
|
|
|
. ./setup-tempfile
|
|
|
|
|
|
|
|
ls -1 >$tempfile
|
|
|
|
(
|
|
|
|
while true
|
|
|
|
do
|
|
|
|
read text
|
|
|
|
test -z "$text" && break
|
2018-10-20 20:32:57 +00:00
|
|
|
ls -ld "$text" || break
|
2011-01-13 02:21:23 +00:00
|
|
|
sleep 1
|
|
|
|
done <$tempfile
|
|
|
|
) |
|
|
|
|
|
|
|
|
$DIALOG --title "PROGRESS" "$@" --progressbox "This is a detailed description\nof the progress-box." 20 70
|
2018-10-20 20:32:57 +00:00
|
|
|
|
|
|
|
retval=$?
|
|
|
|
. ./report-button
|