# 下载工具

终端命令行下载工具还是挺多的wget,curl,axel,aria2c

```
pkg install wget

pkg install curl

pkg install axel

pkg install aria2
```

常用用法：

```
wget --help #查看帮助
wget -O xxx.tar.gz --no-check-certificate https://xxx.com
# 不验证证书，下载保存xxx.tar.gz

curl --help #查看帮助 
curl -fsSL https://xxx.com

axel -n 128 https://xxx.com
# 多线程下载

aria2c -s 128 https://xxx.com
# 多线程下载
```

axel使用教程可以参考：[axel使用指南](https://zsxwz.com/2019/10/14/axel%e5%a4%9a%e7%ba%bf%e7%a8%8b%e4%b8%8b%e8%bd%bd%e5%b7%a5%e5%85%b7%e4%bd%bf%e7%94%a8%e6%8c%87%e5%8d%97/)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://termux-wiki.zsxwz.com/xia-zai-gong-ju.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
