06-textbox.sh 263 B

123456789101112131415161718
  1. #!/bin/sh
  2. # shellcheck disable=SC2046
  3. set -f
  4. set +f -- $(stty size)
  5. height=$(($1 / 2))
  6. width=$(($2 / 2))
  7. whiptail \
  8. --title 'textbox' \
  9. --backtitle 'whiptail' \
  10. --scrolltext \
  11. --textbox \
  12. /usr/share/doc/nano-7.2/README \
  13. "${height}" \
  14. "${width}"