I wrote this script to install pkgs one by one but some time have to press enter to continue.
#!/bin/bash
while read package
do
apt install ${package} -y
clear
done < requirement.txt
i want to skip this step!
I wrote this script to install pkgs one by one but some time have to press enter to continue.
#!/bin/bash
while read package
do
apt install ${package} -y
clear
done < requirement.txt
i want to skip this step!