Skip to content

Instantly share code, notes, and snippets.

@hilam
Created March 29, 2021 04:35
Show Gist options
  • Save hilam/63e4ea992a0a4975898480105344b896 to your computer and use it in GitHub Desktop.
Save hilam/63e4ea992a0a4975898480105344b896 to your computer and use it in GitHub Desktop.
Limpar cache de snap, aplicações desabilitadas
#!/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