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
# Steps to download infos on packages for ubuntu releases that are not | |
# updated anymore (old-releases) | |
distro=precise | |
# Download and extract infos | |
for i in main multiverse restricted universe; do | |
wget -O $i.gz "http://old-releases.ubuntu.com/ubuntu/dists/${distro}/${i}/binary-amd64/Packages.gz" | |
gzip -d $i.gz | |
done |