Skip to content

Instantly share code, notes, and snippets.

@johnnybui
Created January 17, 2019 02:58
Show Gist options
  • Select an option

  • Save johnnybui/3374dd926073a9fcd63528c728c83350 to your computer and use it in GitHub Desktop.

Select an option

Save johnnybui/3374dd926073a9fcd63528c728c83350 to your computer and use it in GitHub Desktop.
Remove old snap app revisions
#!/bin/sh
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