it-artikel:linux:how-to-mass-download-all-mega.nz-files-links-from-html-page-using-megatools

How to mass download all mega.nz files links from html page using megatools?

Given there is some sort of html page or website offering you lists of html links to files on mega.nz you might want to download automatically and without sweat, try this:

sudo apt install megatools wget -y 
mkdir megaDownloads
cd megaDownloads
wget -O - http://www.website.com/freeSamples.html 2>/dev/null | grep -oP 'https://mega\.nz.*?(?="|$)' | xargs megadl

Axel Werner 2018-09-16 17:06

it-artikel/linux/how-to-mass-download-all-mega.nz-files-links-from-html-page-using-megatools.txt · Last modified: 2022-08-31 12:30 by 127.0.0.1