forked from sh-edraft.de/sh_linux_installation_scripts
8 lines
147 B
Bash
8 lines
147 B
Bash
#!/bin/bash
|
|
|
|
first_install() {
|
|
echo 'Installing useful apps'
|
|
|
|
sudo apt-get install net-tools nano htop iftop tree zip unzip curl wget -y
|
|
}
|