Skip to content

Instantly share code, notes, and snippets.

@ChatchaiJ
Created December 8, 2015 06:46
Show Gist options
  • Save ChatchaiJ/2409c5379de06c9c004d to your computer and use it in GitHub Desktop.
Save ChatchaiJ/2409c5379de06c9c004d to your computer and use it in GitHub Desktop.
Remove Orphaned Packages
#!/bin/sh
# --------------------------------------------------------------------- #
# pkgorphremove : Remove Orphaned Packages. #
# Loop repeate removing/purging orphan packages #
# #
# version 0.1 : 2004-08-08 (cj) initial. #
# --------------------------------------------------------------------- #
while [ "`deborphan`" ]
do
deborphan | xargs sudo apt-get -y --purge remove
done
# --------------------------------------------------------------------- #
# end of file #
# --------------------------------------------------------------------- #
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment