Skip to content

Instantly share code, notes, and snippets.

@yujihamaguchi
Created May 20, 2015 09:23
Show Gist options
  • Save yujihamaguchi/8d7f25b28bd3046201f9 to your computer and use it in GitHub Desktop.
Save yujihamaguchi/8d7f25b28bd3046201f9 to your computer and use it in GitHub Desktop.
amiに紐付いていないsnapshotのIDを抽出
aws ec2 describe-snapshots --owner {12桁のアカウントID} | jq '.Snapshots[].SnapshotId' > ./all_snapshot_ids.log
aws ec2 describe-images --owner {12桁のアカウントID} | jq '.Images[].BlockDeviceMappings[].Ebs.SnapshotId' | grep ^\" > ./linked_snapshot_ids.log
comm -23 <(sort ./all_snapshot_ids.log) <(sort ./linked_snapshot_ids.log)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment