I\'m trying to use the Amazon AWS Command Line Tools to find all instances that do not have a specified tag.
Finding all instances WITH a tag is simple enough, e.g.<
You could always do this: ec2-describe-instances | grep -v "Name" :p
ec2-describe-instances | grep -v "Name"