Skip to content

Instantly share code, notes, and snippets.

@mjones129
Created December 13, 2023 22:15
Show Gist options
  • Save mjones129/bdbcef79103d7c455eab23686f42e3d6 to your computer and use it in GitHub Desktop.
Save mjones129/bdbcef79103d7c455eab23686f42e3d6 to your computer and use it in GitHub Desktop.
Remove old versions of snaps
#!/bin/bash
# Removes old revisions of snaps
# CLOSE ALL SNAPS BEFORE RUNNING THIS
set -eu
LANG=C 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