8 lines
114 B
Bash
8 lines
114 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
first_install() {
|
||
|
echo 'Installing:'
|
||
|
|
||
|
sudo apt-get install net-tools htop tree zip unzip-y
|
||
|
}
|