从AWS EC2

时间:2016-06-16 16:02:17

标签: amazon-ec2

我需要从亚马逊网络服务(aws)EC2下载文件夹。我怎么能用wget命令呢?我在Ubuntu上安装了aws-cli。

1 个答案:

答案 0 :(得分:2)

只有当文件夹ID可通过网络访问时才能使用wget,您必须知道该文件夹的路径(http://domain.com/path/to-folder

如果无法通过网络访问,您可以使用scprsync获取内容,例如:

rsync -e 'ssh -i /path/to/key.pem' -av user@host.tv:~/from/ /local/path/to/

确保'from'确实是正确的路径。

此外,您可能还想设置sFTP并使用它。