mirror of
https://tildegit.org/ben/dotfiles.git
synced 2025-07-11 00:02:03 +00:00
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
|
|
|