I want to download entire multiverse repository
I know it maybe several GBs around 20, but I want to.
NOTE:I ONLY WANT TO DOWNLOAD AND WILL INSTALL LATER using dpkg -i [pkg]
First created a file which contains names of all the available packages using apt-cache.
apt-cache dumpavail |grep -oP "(?<=Package: ).*" >> packagelist
This will create a file packagelist with all the available packages.
i want to understand the working of apt-cache dumpavail command. i know >> is there to append and creates a file package list and all, but didn't get that grep (?<=package: ) and it's working so ones understood i don't have to memorize that stuff.