HardenedBSD/samples/progress2

23 lines
357 B
Plaintext
Raw Normal View History

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