@echo off
SET PARALLEL_DEGREE=%1
SET TARGET_RB_SCRIPT_PATH=%2
SET ACCESS_URL=%3
SET USER_ID=%4
SET PASSWORD=%5
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
| 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) |
OlderNewer