要下载文件到本地,你可以使用以下方法:
wget <文件链接>
例如:
wget https://example.com/file.zip
curl -O <文件链接>
例如:
curl -O https://example.com/file.zip
scp user@remote_host:/path/to/file /path/to/save/file
例如:
scp user@example.com:/path/to/file.zip /path/to/save/file.zip
以上是几种常见的下载文件到本地的方法,你可以选择适合自己的方式来下载文件。