Comment 4 for bug 162185

Revision history for this message
Yahya (mfyahya) wrote :

Until this bug is resolved, this bash command line can be used to download the .deb files corresponding to installed packages:

dpkg --get-selections | awk '{ print $1};' | while read package; do apt-cache show "$package"| wget -c 'http://ae.archive.ubuntu.com/ubuntu/'`sed -ne '/^Filename/s/^Filename: //p'`; done