install.sh (114B)
1 function () install_apk { 2 while read -r item; do 3 apk add -xq $item 4 done < progs.csv 5 echo "done" 6 } 7 install_apk()