From 8f538fac5b3f78f8e6b3302ff98b6bf589d0b6b7 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Fri, 20 Oct 2023 00:02:12 -0400 Subject: [PATCH] add arch aws cli and nslookup --- arch/workstation.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/arch/workstation.md b/arch/workstation.md index b26a129..53785b7 100644 --- a/arch/workstation.md +++ b/arch/workstation.md @@ -23,6 +23,8 @@ - [Initialization](#initialization) - [Development](#development) - [Cura](#cura) + - [AWS CLI](#aws-cli) + - [NSlookup](#nslookup) ## Base Tools @@ -324,3 +326,28 @@ Exec=/home/ducoterra/Applications/Cura.AppImage Icon=/home/ducoterra/.icons/cura.png Type=Application ``` + +## AWS CLI + + + +```bash +# Install less if you don't have it already +pacman -S less + +curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" +unzip awscliv2.zip +sudo ./aws/install +``` + +Add the following to your .zshrc: + +```bash +complete -C '/usr/local/bin/aws_completer' aws +``` + +## NSlookup + +```bash +pacman -Syu bind +```