Skip to content

Instantly share code, notes, and snippets.

@fortunto2
Created March 6, 2020 18:25
Show Gist options
  • Save fortunto2/8afacd9b6e0701601fed88a5bca3a423 to your computer and use it in GitHub Desktop.
Save fortunto2/8afacd9b6e0701601fed88a5bca3a423 to your computer and use it in GitHub Desktop.
очистка убунту от хлама
#!/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
apt-get clean
apt-get autoremove --purge
docker system prune
rm -rf $HOME/.gradle/caches/
df -lh | grep sda5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment