Skip to content

Instantly share code, notes, and snippets.

@Voronenko
Created May 15, 2019 21:42
Show Gist options
  • Save Voronenko/5ff82f9c09c9e193a084f5bd8a97e570 to your computer and use it in GitHub Desktop.
Save Voronenko/5ff82f9c09c9e193a084f5bd8a97e570 to your computer and use it in GitHub Desktop.
#!/bin/bash
snap list --all | while read snapname ver rev trk pub notes; do if [[ $notes = *disabled* ]]; then 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