Skip to content

Instantly share code, notes, and snippets.

@moki9
Created May 26, 2021 23:09
Show Gist options
  • Save moki9/8e04f7deed14a0d49fbf98af23240f04 to your computer and use it in GitHub Desktop.
Save moki9/8e04f7deed14a0d49fbf98af23240f04 to your computer and use it in GitHub Desktop.
Remove Old Snaps
#!/bin/bash
# https://www.linuxuprising.com/2019/04/how-to-remove-old-snap-versions-to-free.html
# 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