Skip to content

Instantly share code, notes, and snippets.

@ivan-kalachikov
Created June 17, 2024 05:18
Show Gist options
  • Save ivan-kalachikov/2baa785705a09316aef8102e380cdabe to your computer and use it in GitHub Desktop.
Save ivan-kalachikov/2baa785705a09316aef8102e380cdabe 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=en_US.UTF-8 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