Skip to content

Instantly share code, notes, and snippets.

@LetUsFlow
Created November 4, 2020 15:54
Show Gist options
  • Save LetUsFlow/b76bc82b31e87731eb029814ca0939d1 to your computer and use it in GitHub Desktop.
Save LetUsFlow/b76bc82b31e87731eb029814ca0939d1 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
sudo snap remove "$snapname" --revision="$revision"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment