12 lines
170 B
Bash
Executable File
12 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
|
|
packages="htop neovim"
|
|
|
|
aptcommand="sudo apt-get"
|
|
if [[ "$EUID" -eq 0 ]]; then
|
|
aptcommand="apt-get"
|
|
fi
|
|
|
|
$aptcommand update
|
|
$aptcommand install -y $packages
|