mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
5 lines
172 B
Bash
Executable file
5 lines
172 B
Bash
Executable file
#!/bin/sh
|
|
LANG=en_US.UTF-8 snap list --all | awk '/disabled/{print $1, $3}' |
|
|
while read snapname revision; do
|
|
sudo snap remove "$snapname" --revision="$revision"
|
|
done
|