/contrib/dialog/samples/progress
https://bitbucket.org/freebsd/freebsd-head/ · Shell · 19 lines · 13 code · 4 blank · 2 comment · 2 complexity · 243a58f99a3293d0913617d5ad12403b MD5 · raw file
- #!/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