Skip to content

Instantly share code, notes, and snippets.

@acosonic
Created January 9, 2023 20:43
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 acosonic/4769aed1ee09c2290e43f9f5c65ac219 to your computer and use it in GitHub Desktop.
Save acosonic/4769aed1ee09c2290e43f9f5c65ac219 to your computer and use it in GitHub Desktop.
Ubuntu 20.04 clean snap versions cache
#!/bin/sh
LANG=en_US.UTF-8 snap list --all | awk '/disabled/{print $1, $3}' |
while read pkg revision; do
sudo snap remove "$pkg" --revision="$revision"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment