Skip to content

Instantly share code, notes, and snippets.

@ricsdeol
Created June 13, 2018 13:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ricsdeol/a99793af2178a8726dc562fc94720870 to your computer and use it in GitHub Desktop.
Save ricsdeol/a99793af2178a8726dc562fc94720870 to your computer and use it in GitHub Desktop.
Clean disabled snap apps
#!/bin/sh
set -eu
snap list --all | awk '/disabled/{print $1, $3}' |
while read snapname revision; do
sudo snap remove "$snapname" --revision="$revision"
done
#observation: I copied this script from another person but i don't remember where.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment