-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode
More file actions
20 lines (16 loc) · 655 Bytes
/
Copy pathcode
File metadata and controls
20 lines (16 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
sudo apt-get -y install net-tools
#######################################################
# Golang
#######################################################
curl https://go.dev/dl/go1.25.3.linux-amd64.tar.gz > go.linux-amd64.tar.gz
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go.linux-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin
#######################################################
# Git
#######################################################
sudo apt -y install git
#######################################################
# VSCode
#######################################################
sudo snap install --classic code