Skip to content

Instantly share code, notes, and snippets.

View scottfoster's full-sized avatar

Scott Foster scottfoster

View GitHub Profile
servers() {
aws ec2 describe-instances --profile munzee --region us-east-1 --filters "Name=instance-state-name,Values=running" --query 'Reservations[].Instances[].[ [Tags[?Key==`Name`].Value][0][0],PrivateIpAddress ]' --output table | sort -n -k 2
}