/contrib/dialog/samples/programbox
Shell | 19 lines | 13 code | 4 blank | 2 comment | 2 complexity | 6dce74d210fe58a28f60bee6b92f2681 MD5 | raw file
1#!/bin/sh 2# $Id: programbox,v 1.1 2011/03/02 01:17:28 tom Exp $ 3 4. ./setup-vars 5 6. ./setup-tempfile 7 8ls -1 >$tempfile 9( 10while true 11do 12read text 13test -z "$text" && break 14ls -ld "$text" 15sleep 0.1 16done <$tempfile 17) | 18 19$DIALOG --title "PROGRAMBOX" "$@" --programbox 20 70