forked from sneak/hacks
13 lines
117 B
Bash
13 lines
117 B
Bash
#!/bin/bash
|
|
|
|
PKGS="
|
|
bash-completion
|
|
byobu
|
|
mosh
|
|
vim
|
|
"
|
|
|
|
apt update
|
|
apt -y upgrade
|
|
apt -y install $PKGS
|