Skip to content

Instantly share code, notes, and snippets.

@RodolpheGohard
Created January 3, 2024 16:09
Show Gist options
  • Save RodolpheGohard/e69bbb45ed4e690f4967c7681cb60a5d to your computer and use it in GitHub Desktop.
Save RodolpheGohard/e69bbb45ed4e690f4967c7681cb60a5d to your computer and use it in GitHub Desktop.
#!/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