Skip to content

Instantly share code, notes, and snippets.

@binarweb
Created November 6, 2024 11:53
Show Gist options
  • Save binarweb/1b03bb906a6589a8ccd5ee991074dbe1 to your computer and use it in GitHub Desktop.
Save binarweb/1b03bb906a6589a8ccd5ee991074dbe1 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Removes old revisions of snaps
# CLOSE ALL SNAPS BEFORE RUNNING THIS
set -eu
snap list --all | awk '/disabled/{print $1, $3}' |
while read snapname revision; do
snap remove "$snapname" --revision="$revision"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment