I am trying to write a bash script to install a list of software. I am using --assume-yes to get past the prompts.
This following line somehow doesn't work:
sudo apt-get install python-software-properties --assume-yes
If I try to apt-get without --assume-yes it works but the prompt asks me to:
please [Enter] to continue or ctrl+c to cancel adding it
How do I add Enter as a command when running apt-get install instead of using --assume-yes?