Псевдографика с диалогом

whiptail

Установка:

sudo apt-get install whiptail

Пример диалогового окна:

whiptail --title "Test Message Box" --msgbox "Create a message box with whiptail. Choose Ok to continue." 10 60

Другие примеры: whiptail

dialog

Установка dialog:

sudo apt-get install dialog

Пример диалогового окна:

dialog --title " Заголовок " --msgbox "Тест сообщения" 5 40 && clear

Прогресс бар

progress.sh
#!/bin/bash
 
(
c=10
while [ $c -ne 110 ]
  do
    echo $c
    ((c+=10))
    sleep 1
done
) | dialog --title " Тест диалога прогресса " --gauge "Please wait ...." 10 60 0
 
clear
Печать/экспорт