mirror of https://tildegit.org/ben/dotfiles
12 lines
133 B
Bash
12 lines
133 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
apt update
|
||
|
apt upgrade -y
|
||
|
apt full-upgrade -y
|
||
|
|
||
|
while read pkg; do
|
||
|
echo $pkg
|
||
|
apt install $pkg
|
||
|
done < packages.txt
|
||
|
|