Created
February 12, 2026 06:25
-
-
Save esmaeelE/ba2162928501701e27b2dd96584c602d to your computer and use it in GitHub Desktop.
aria2 stealth downloader
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
| # while read -r url; do | |
| # wget wget --no-check-certificate -c "$url" >>wget.log 2>&1 || echo "$url" >>failed.txt | |
| # done <list.txt | |
| # aria2 stealth downloader | |
| aria2c -i listr.txt \ | |
| --user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64)" \ | |
| --referer="https://ketab.bashariyat.org/" \ | |
| --check-certificate=false \ | |
| --max-connection-per-server=1 \ | |
| --split=1 \ | |
| --min-split-size=10M \ | |
| --file-allocation=none \ | |
| --auto-file-renaming=false \ | |
| --allow-overwrite=true \ | |
| --continue=true \ | |
| --retry-wait=10 \ | |
| --max-tries=5 \ | |
| --log=aria2.log \ | |
| --log-level=notice \ | |
| -d files | |
| # --save-session=session.txt \ | |
| # --save-session-interval=60 \ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment