Files
Touchh/var_clean.sh
2024-12-18 20:44:21 +09:00

8 lines
357 B
Bash
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env bash
# Получаем список всех снапов с ревизиями, фильтруем по статусу "disabled"
snap list --all | awk '/disabled/{print $1,$3}' | while read SNAP_NAME REVISION; do
echo "Удаляю $SNAP_NAME ревизию $REVISION..."
sudo snap remove "$SNAP_NAME" --revision="$REVISION"
done