mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-26 10:53:39 +01:00
23 lines
305 B
Bash
Executable File
23 lines
305 B
Bash
Executable File
#!/bin/sh
|
|
# $Id: progress,v 1.8 2020/11/26 00:05:11 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 20 70
|
|
|
|
returncode=$?
|
|
. ./report-button
|