/contrib/dialog/samples/programbox2

https://bitbucket.org/freebsd/freebsd-head/ · Shell · 19 lines · 13 code · 4 blank · 2 comment · 2 complexity · 92ceaef3ef4c279ce9bcc85c1252d8e4 MD5 · raw file

  1. #!/bin/sh
  2. # $Id: programbox2,v 1.1 2011/03/02 01:25:31 tom Exp $
  3. . ./setup-vars
  4. . ./setup-tempfile
  5. ls -1 >$tempfile
  6. (
  7. while true
  8. do
  9. read text
  10. test -z "$text" && break
  11. ls -ld "$text"
  12. sleep 0.1
  13. done <$tempfile
  14. ) |
  15. $DIALOG --title "PROGRAMBOX" "$@" --programbox "ProgramBox" 20 70