From dbd9fda3240da6faf2df02b3783c47ef3399fa67 Mon Sep 17 00:00:00 2001 From: MorganGeek Date: Thu, 2 Jul 2020 15:50:30 +0200 Subject: [PATCH] add awsls --- dot_scripts/bootstrap.sh | 3 +++ dot_zsh_aliases | 3 +++ 2 files changed, 6 insertions(+) diff --git a/dot_scripts/bootstrap.sh b/dot_scripts/bootstrap.sh index 8cf0090..72792dc 100755 --- a/dot_scripts/bootstrap.sh +++ b/dot_scripts/bootstrap.sh @@ -241,6 +241,9 @@ git clone https://github.com/aristocratos/bashtop.git ~/Code/bashtop cd ~/Code/bashtop || exit sudo make install +# Install awsls +BINDIR="/usr/local/bin" curl -sSfL https://raw.githubusercontent.com/jckuester/awsls/master/install.sh | sh -s v0.1.2 + # Upgrade echo "Upgrading apps" ~/.scripts/upgrade.sh diff --git a/dot_zsh_aliases b/dot_zsh_aliases index 5b41b07..12b4392 100644 --- a/dot_zsh_aliases +++ b/dot_zsh_aliases @@ -117,6 +117,9 @@ alias x='extract' alias systeminfo='neofetch' alias monitoring='glances' +# Infrastructure +alias awsls='awsls -profile default -region eu-west-1 --attributes tags aws_instance' + # Package management tricks alias npmlist='npm list -g --depth 0' alias pip='pip3'