From 6c9c8b9be9f2550178b7fbbf0e1a68b148cc920b Mon Sep 17 00:00:00 2001 From: Muhammad Falak R Wani Date: Mon, 4 Feb 2019 19:41:39 +0530 Subject: [PATCH] aria2: add page (#2748) --- pages/common/aria2.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pages/common/aria2.md diff --git a/pages/common/aria2.md b/pages/common/aria2.md new file mode 100644 index 000000000..0cc22fd4e --- /dev/null +++ b/pages/common/aria2.md @@ -0,0 +1,33 @@ +# aria2 + +> A lightweight multi-protocol & multi-source command-line download utility. +> Supports HTTP, HTTPS, FTP, SFTP, BitTorrent and Metalink. +> Homepage: . + +- Download a web resource: + +`aria2c {{http://example.org/myLinux.iso}}` + +- Download a resource from multiple sources: + +`aria2c {{http://mirror1.org/myLinux.iso}} {{http://mirror2.org/myLinux.iso}}` + +- Download using 2 connections per host: + +`aria2c -x{{2}} {{http://example.org/myLinux.iso}}` + +- Download from a Metalink URI: + +`aria2c {{http://example.org/myLinux.metalink}}` + +- Download from a BitTorrent URI: + +`aria2c {{http://example.org/myLinux.torrent}}` + +- Download from a BitTorrent Magnet URI: + +`aria2c {{'magnet:?xt=urn:btih:248D0A1CD08284299DE78D5C1ED359BB46717D8C'}}` + +- Download URIs from a file: + +`aria2c -i {{uris.txt}}`