Questions tagged [whiptail]
The whiptail tag has no summary.
33 questions
0 votes
1 answer
178 views
Setting Whiptail yesno default to no
Is there a way to have the whiptail yesno choice box set to default no ? if (whiptail --title "STEAM GAME SERVER 1" --yesno "ARE YOU SURE TO REBOOT LINUX OS?" 10 60) then "Yes&...
1 vote
1 answer
1k views
Create an array from the output of whiptail command
So, I am trying to use whiptail command to give users option to choose different things they want to install in their system. I use the whiptail --checklist command as below: name =$(whiptail --title &...
0 votes
1 answer
1k views
Issue with bash Dialog (Whiptail) progress bar
I am trying to create a bash Dialog (whiptail) progress bar for a list of commands. So, that progress bar shows along with messages when the commands get executed one by one in the background. I am ...
0 votes
0 answers
3k views
How to show a progress bar for lftp script for newer version of lftp in 2020?
I have read this question and its answer, but they do not answer my question. The shell script is this: let total=$(lftp -f lftp-script-count.txt | wc -l)-2 lftp -f lftp-script.txt | while read ...
0 votes
0 answers
51 views
Monitor Apache Selectively
I am working to parse apache logs in Common Format in realtime so that I monitor them while I work. "tail -F /var/log/apache2/access.log" works but provides more than I need. "awk '{print $1 " " $2 " "...
-2 votes
1 answer
995 views
Changing font size in whiptail dialog boxes
I've made script using a few different whiptail boxes, which all work fine, but I'd like the font size to be larger. All my google searches on whiptail font size tell me either about whiptail box ...
-1 votes
1 answer
3k views
Array into whiptail checkbox - BASH [duplicate]
How do I show a whiptail checklist from Array?
0 votes
1 answer
1k views
How to display three whiptail on the same screen?
I have three very long processes that I need to monitor. Rather than having three terminal windows open each with a separate whiptail progress bar. I am searching for a way to send three whiptail ...