Last active
April 23, 2025 09:18
-
-
Save aasthavar/6ff7dddc093204524666b8f16091d9a4 to your computer and use it in GitHub Desktop.
install aws cli v2
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
| echo "Installing AWS CLI v2..." | |
| curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" | |
| unzip awscliv2.zip | |
| sudo ./aws/install | |
| rm awscliv2.zip | |
| rm -rf aws | |
| echo "AWS CLI v2 installed successfully." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment