README.md in terraforming-0.10.0 vs README.md in terraforming-0.11.0

- old
+ new

@@ -75,10 +75,11 @@ ```bash $ terraforming Commands: terraforming asg # AutoScaling Group + terraforming cwa # CloudWatch Alarm terraforming dbpg # Database Parameter Group terraforming dbsg # Database Security Group terraforming dbsn # Database Subnet Group terraforming ec2 # EC2 terraforming ecc # ElastiCache Cluster @@ -335,11 +336,11 @@ #### Example: Export all Example assuming you want to export everything from us-west-2 and you are using ~/.aws/credentials with a `default` profile ```bash export AWS_REGION=us-west-2 terraforming help | grep terraforming | grep -v help | awk '{print "terraforming", $2, "--profile", "default", ">", $2".tf";}' | bash -# remove files that only have 1 empty line (nothing in AWS) -find . -type f | xargs wc -l | grep '1 .' | awk '{print $2;}' | xargs rm +# find files that only have 1 empty line (likely nothing in AWS) +find . -type f -name '*.tf' | xargs wc -l | grep ' 1 .' ``` ## Run as Docker container [![Docker Repository on Quay.io](https://quay.io/repository/dtan4/terraforming/status "Docker Repository on Quay.io")](https://quay.io/repository/dtan4/terraforming) Terraforming Docker Image is available at [quay.io/dtan4/terraforming](https://quay.io/repository/dtan4/terraforming) and developed at [dtan4/dockerfile-terraforming](https://github.com/dtan4/dockerfile-terraforming).