My bash script contains the clear command, that when executed through dialog command will result with strange letters.
How can I still use clear command without seeing this output in the dialog?
This is an example of how to produce this:
#!/bin/bash
echo "starting..."
clear
echo ""
echo "End"
I'm using the dialog sort of like this:
bash /tmp/1.sh | dialog --progressbox 30 80
