11 lines
88 B
Bash
11 lines
88 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
PKGS="
|
||
|
byobu
|
||
|
vim
|
||
|
"
|
||
|
|
||
|
apt update
|
||
|
apt -y upgrade
|
||
|
apt -y install $PKGS
|