要下載文件到本地,你可以使用以下方法:
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
以上是幾種常見的下載文件到本地的方法,你可以選擇適合自己的方式來下載文件。