Skip to content

Instantly share code, notes, and snippets.

@appwiz
Last active August 5, 2019 11:14
Show Gist options
  • Save appwiz/4bca8c74c04b95694724061f36b07752 to your computer and use it in GitHub Desktop.
Save appwiz/4bca8c74c04b95694724061f36b07752 to your computer and use it in GitHub Desktop.
Erases all registered sites from your Netlify profile
for i in `netlify sites:list | grep "\w*-\w*-\w* - \w*" | cut -f3 -d" "`; do echo $i; netlify sites:delete --force $i; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment