Skip to content

Instantly share code, notes, and snippets.

@Vchekryzhov
Created October 12, 2021 11:28
Show Gist options
  • Save Vchekryzhov/31266f81503d3f673a5a335ca1f0451b to your computer and use it in GitHub Desktop.
Save Vchekryzhov/31266f81503d3f673a5a335ca1f0451b to your computer and use it in GitHub Desktop.
remove snaps
#!/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