Skip to content

Instantly share code, notes, and snippets.

@jdatti
Created March 19, 2019 04:03
Show Gist options
  • Save jdatti/20bfa121f63f31594f61c52ce5003358 to your computer and use it in GitHub Desktop.
Save jdatti/20bfa121f63f31594f61c52ce5003358 to your computer and use it in GitHub Desktop.
Ubuntu 18 clean old snaps
#!/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