How can you view the complete aria2 help docs?
Viewing the complete help documentation for aria2 directly in the terminal can be achieved using native system manual commands or specific command-line flags built into the software. This article covers how to access the exhaustive system man page for aria2, navigate its extensive options efficiently, and utilize internal application flags to filter help documentation by specific protocol or keyword categories directly within your terminal window.
Accessing the Full Manual via Man Pages
The most comprehensive, built-in documentation for aria2 available
offline is its traditional Unix/Linux man page. Because the actual
binary executed in the terminal is named aria2c (where the
ācā stands for command-line), the manual is registered under that exact
name.
To open the full interface manual, execute the following command:
man aria2cThis opens an extensive reference document detailing every available
download protocol, environment variable, configuration file format, and
exit status. You can use the up and down arrow keys to scroll, or press
q to exit the manual viewer.
Filtering Options Using Built-In Help Flags
If you do not want to scroll through the massive man
page, the aria2c binary includes a flexible
--help flag that classifies help messages by tags.
To view a summarized list of fundamental commands, use the basic help flag:
aria2c -hTo find specific capabilities without reading the entire document,
you can append a tag starting with a # symbol to filter out
irrelevant information.
| Command | Purpose |
|---|---|
aria2c --help=#http |
Displays all options related to HTTP and HTTPS downloads. |
aria2c --help=#bittorrent |
Displays all options for handling torrent files and magnet links. |
aria2c --help=#rpc |
Shows configuration options for the Remote Procedure Call interface. |
aria2c --help=#all |
Dumps every single internal help message directly to the standard output. |
Searching the Manual for Keywords
When targeting a specific feature, like speed throttling or file allocation, you can pass a keyword directly to the help flag. If you type a non-tag word after the equals sign, the utility will automatically print every option containing that string.
aria2c --help=limitThis approach narrows down the comprehensive terminal documentation instantly, providing the exact flag syntax needed for your specific command-line download workflows.