Last active
January 4, 2016 15:19
-
-
Save hfase01/8639779 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
######### | |
## | |
## This script simply lists the installed PPA's on Ubuntu. | |
## | |
## To run this script right from GitHub use the following command. | |
## | |
## ~$ curl -s https://gist.github.com/hfase01/8639779/raw/listppa | sh | |
## | |
########## | |
for APT in `find /etc/apt/ -name \*.list`; do | |
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 --remove ppa:$USER/$PPA | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment