#!/bin/sh # $Id: progress 1073 2021-06-27 05:01:23Z $ . ./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