Skip to content

Instantly share code, notes, and snippets.

@rcbop
Created June 19, 2019 12:24
Show Gist options
  • Save rcbop/1066f4c7bb23686f6618c79a976b8fa2 to your computer and use it in GitHub Desktop.
Save rcbop/1066f4c7bb23686f6618c79a976b8fa2 to your computer and use it in GitHub Desktop.
INSTANCE_PREFIX=${INSTANCE_PREFIX:?'Provide instance prefix'}
#!/bin/bash
while IFS= read -r image
do
echo "Removing $image"
gcloud --quiet compute images delete "$image";
done < <(gcloud compute images list --filter=name=$INSTANCE_PREFIX | sed '1d'| awk '{ print $1 }')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment