Last active
September 24, 2022 00:45
-
-
Save allebb/6bda19413e3ba6b4b0025ea7ae4afbd5 to your computer and use it in GitHub Desktop.
Install SDT on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/usr/bin/env bash | |
sudo apt-get update && sudo apt-get install -y dotnet-runtime-6.0 wget | |
sudo mkdir -p /opt/sdt | |
sudo wget -O /opt/sdt/sdt https://blog.bobbyallen.me/sdt_v107 | |
sudo rm -f /usr/bin/sdt | |
sudo chmod +x /opt/sdt/sdt | |
sudo ln -s /opt/sdt/sdt /usr/bin/sdt | |
sudo /opt/sdt/sdt --install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment