How to make a GUI for bash scripts? [closed]
Before actually using GUI dialogues, consider using console prompts. Quite often you can get away with simple “y/n?” prompts, which in bash you achieve via the read command.. read -p “Do something? “; if [ $REPLY == “y” ]; then echo yay; fi If console prompt’s just won’t cut it, Zenity is really easy to … Read more