Skip to content

Instantly share code, notes, and snippets.

View vilinski's full-sized avatar
☣️
toxic

Andreas Vilinski vilinski

☣️
toxic
View GitHub Profile
#!/usr/bin/env bash
TOOLS=/tools
echo "download dotnet diagnostic tools"
mkdir "$TOOLS"
chmod 777 $TOOLS
cd "$TOOLS"
tools="dump gcdump source stack trace counters monitor sos"
for t in $tools; do wget -O $TOOLS/dotnet-$t https://aka.ms/dotnet-$t/linux-musl-x64; done;
chmod +x $TOOLS/dotnet-*