保留目錄結構複製文件,我在我的本地計算機上的以下目錄:如何同時使用AWS命令行
dir1
|
|__ randomfile.jpg
|__ dir2
|
|__ file1.txt
|__ file2.txt
|__ pict.png
我想要做的是所有文件複製與*.txt
並保留子目錄結構到Amazon S3桶。我怎樣才能做到這一點?
在S3的一天結束。我們想找到這個文件和目錄結構:
dir1
|
|__ dir2
|
|__ file1.txt
|__ file2.txt
使用標準的Unix命令我可以這樣做:
find . -name '*.txt' -exec cp --parents \{\} /target \;
,但不知道如何與做AWS command line.
在現實中有大約10TB大小的文件傳輸。
可能http://stackoverflow.com/questions/8659382/downloading-an-entire-s3-bucket – codeforester