Skip to content

Instantly share code, notes, and snippets.

@mtigdemir
Created November 17, 2019 20:54
Show Gist options
  • Save mtigdemir/0c2cef6d562f5918a80c560552083d7f to your computer and use it in GitHub Desktop.
Save mtigdemir/0c2cef6d562f5918a80c560552083d7f to your computer and use it in GitHub Desktop.
Remove Unused Snap Revisions
snap list --all | while read snapname ver rev trk pub notes; do if [[ $notes = *disabled* ]]; then sudo snap remove "$snapname" --revision="$rev"; fi; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment