mirror of
https://github.com/opnsense/src.git
synced 2026-03-31 06:55:18 -04:00
20 lines
263 B
Text
20 lines
263 B
Text
|
|
#!/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
|