Skip to content

Instantly share code, notes, and snippets.

@Wollac
Created October 24, 2018 08:23
Show Gist options
  • Save Wollac/1386026e07a78b3c20dba6ecb03c117d to your computer and use it in GitHub Desktop.
Save Wollac/1386026e07a78b3c20dba6ecb03c117d to your computer and use it in GitHub Desktop.
Remove all old versions of snaps
#!/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