mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-26 19:03:48 +01:00
23 lines
357 B
Bash
Executable File
23 lines
357 B
Bash
Executable File
#!/bin/sh
|
|
# $Id: progress2,v 1.7 2018/06/17 20:45:25 tom Exp $
|
|
|
|
. ./setup-vars
|
|
|
|
. ./setup-tempfile
|
|
|
|
ls -1 >$tempfile
|
|
(
|
|
while true
|
|
do
|
|
read text
|
|
test -z "$text" && break
|
|
ls -ld "$text" || break
|
|
sleep 1
|
|
done <$tempfile
|
|
) |
|
|
|
|
$DIALOG --title "PROGRESS" "$@" --progressbox "This is a detailed description\nof the progress-box." 20 70
|
|
|
|
retval=$?
|
|
. ./report-button
|