Skip to content

Instantly share code, notes, and snippets.

@esmaeelE
Created February 12, 2026 06:25
Show Gist options
  • Select an option

  • Save esmaeelE/ba2162928501701e27b2dd96584c602d to your computer and use it in GitHub Desktop.

Select an option

Save esmaeelE/ba2162928501701e27b2dd96584c602d to your computer and use it in GitHub Desktop.
aria2 stealth downloader
# 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