Created
November 17, 2019 20:54
-
-
Save mtigdemir/0c2cef6d562f5918a80c560552083d7f to your computer and use it in GitHub Desktop.
Remove Unused Snap Revisions
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
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