Reputation: 6122
I'm downloading multiple links using aria2c
using a list of links. At the end of the download run, aria2c outputs a summary table on the terminal like so:
Download Results:
gid |stat|avg speed |path/URI
======+====+===========+============
1d11bc|OK | 23KiB/s|/mnt/72B627...
I want to:
In the docs all I've found is --download-result=<OPT>
which might help towards 1 but I can't find anything hinting towards 2. Is there any option in aria2c to save that summary table? If not, then is there a way to capture it from terminal output but not have to capture all the other stuff?
This might be something very obvious but I'm not able to find anything for this right now. Just for completeness, i'm on an Ubuntu OS and using aria2c in the Terminal.
Upvotes: 0
Views: 1171
Reputation: 31
With logging --log
and --log-level
maybe you can generate the table again.
Upvotes: -1