-
-
Save Bost/66638cab114a6da691518598b6d13650 to your computer and use it in GitHub Desktop.
list ppa on *nix system
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# get all the PPAs installed on a system ready to share for reininstall | |
for APT in `find /etc/apt/ -name \*.list`; do | |
# list found files - helps in case of: '... public key is not available: NO_PUBKEY' | |
echo $APT | |
grep -o "^deb http://ppa.launchpad.net/[a-z0-9\-]\+/[a-z0-9\-]\+" $APT | while read ENTRY ; do | |
USER=`echo $ENTRY | cut -d/ -f4` | |
PPA=`echo $ENTRY | cut -d/ -f5` | |
echo sudo apt-add-repository ppa:$USER/$PPA | |
echo sudo ppa-purge ppa:$USER/$PPA | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment