Created
May 11, 2016 15:03
-
-
Save marcelog/b2e84a5446bf14de2bdc2a53cfd06a11 to your computer and use it in GitHub Desktop.
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
| #!/bin/bash | |
| aws ec2 describe-tags --filters "Name=resource-id,Values=${instance_id}" | grep -2 Environment | grep Value | tr -d ' ' | cut -f2 -d: | tr -d '"' | tr -d ',') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Why is there a
)at the end?