aboutsummaryrefslogtreecommitdiff
path: root/templates/.zsh/functions/ec2.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'templates/.zsh/functions/ec2.zsh')
-rw-r--r--templates/.zsh/functions/ec2.zsh6
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/.zsh/functions/ec2.zsh b/templates/.zsh/functions/ec2.zsh
new file mode 100644
index 0000000..dfaf8e1
--- /dev/null
+++ b/templates/.zsh/functions/ec2.zsh
@@ -0,0 +1,6 @@
+function ec2() {
+ if [[ "$#" == "0" ]]; then
+ aws ec2 describe-instances | jq --raw-output 'include "aws"; getInstanceMetadata' | column -t -s $'\t' | sort
+ fi
+}
+