↧
Answer by choroba for Why my shell script doesn't open the terminal?
Run the terminal from the script. #!/bin/bash xterm -e sudo apt-get install vlc -y Other terminals might have a different way how to run a command than -e.
View ArticleWhy my shell script doesn't open the terminal?
All my bash scripts (which I always gave the permission to be executed) works but without open the Konsole. So if I made the script: #!/bin/bash mkdir t When I double-click it I find a new directory...
View Article