-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
21 lines (16 loc) · 851 Bytes
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/bash
###################################################################
#Script Name : install.sh
#Description : Installation of speedtest-tool
#Author : Eric Klatzer
#Email : [email protected]
###################################################################
# update package lists
sudo apt update
# curl
sudo apt install -y curl
# speedtest-cli
curl -s https://install.speedtest.net/app/cli/install.deb.sh | sudo bash
sudo apt install -y speedtest
# jq
sudo apt install -y jq