Created
October 1, 2020 19:55
-
-
Save aessing/ae8b69244cf81d1d263b03fa3d30bfc5 to your computer and use it in GitHub Desktop.
Install Azure Command-Line Interface (AZ CLI) on Linux (Ubuntu)
This file contains 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
#!/bin/bash | |
# ============================================================================= | |
# Install Azure Command-Line Interface (AZ CLI) on Linux (Ubuntu) | |
# https://docs.microsoft.com/en-us/cli/azure/ | |
# https://github.com/Azure/azure-cli | |
# ----------------------------------------------------------------------------- | |
# Developer.......: Andre Essing (https://www.andre-essing.de/) | |
# (https://github.com/aessing) | |
# (https://twitter.com/aessing) | |
# (https://www.linkedin.com/in/aessing/) | |
# ----------------------------------------------------------------------------- | |
# THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, | |
# EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED | |
# WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. | |
# ============================================================================= | |
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment