Skip to content

Instantly share code, notes, and snippets.

@agarzon
Last active February 2, 2016 15:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agarzon/20e2cf471821dbce3527 to your computer and use it in GitHub Desktop.
Save agarzon/20e2cf471821dbce3527 to your computer and use it in GitHub Desktop.
ubuntu remove old kernels (fish shell)
dpkg --list | grep linux-image | awk '{ print $2 }' | sort -V | sed -n '/'(uname -r)'/q;p' | xargs sudo apt-get -y purge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment