Created
January 6, 2017 09:41
-
-
Save stuartf7/95241ba25271a05ec01e40d1f01956b6 to your computer and use it in GitHub Desktop.
amazon linux install .net core preview 4
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
curl -sSL -o dotnet.tar.gz https://go.microsoft.com/fwlink/?linkid=837969 | |
sudo mkdir -p /opt/dotnet && sudo tar zxf dotnet.tar.gz -C /opt/dotnet | |
find /opt/dotnet/ -type f -name "*.dll" -exec sudo chmod 644 {} \; | |
sudo rm -rf dotnet.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment