Skip to content

Instantly share code, notes, and snippets.

@zoonderkins
Created April 6, 2021 09:44
Show Gist options
  • Save zoonderkins/db0fbf5190d42ded1f56c4c59f0de479 to your computer and use it in GitHub Desktop.
Save zoonderkins/db0fbf5190d42ded1f56c4c59f0de479 to your computer and use it in GitHub Desktop.
command line download of torrent magnet link using aria2
# Command to download file via bittorrent magnet link using aria2.
# See website and documentation at https://aria2.github.io
# -d specifies the directory to store the downloaded file
# --seed-time=0 disables seeding after download has completed
aria2c -d ~/Downloads --seed-time=0 "magnet:?xt=urn:btih:248D0A1CD08284299DE78D5C1ED359BB46717D8C"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment