Skip to content

Instantly share code, notes, and snippets.

@guilhermegazzinelli
Created August 19, 2020 12:52
Show Gist options
  • Save guilhermegazzinelli/25300cfef136e6c96ee9da38946292fe to your computer and use it in GitHub Desktop.
Save guilhermegazzinelli/25300cfef136e6c96ee9da38946292fe to your computer and use it in GitHub Desktop.
#!/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