-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAWS_S3_CLI_command.sh
18 lines (15 loc) · 1.32 KB
/
AWS_S3_CLI_command.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# For Linux
# You can use the bash or sh command followed by the file name.sh to execute the commands in the file.
# To copy all JSON Reference data to same location:
aws s3 cp . s3://de-on-youtube-raw-useast1-shiv-dev/youtube/raw_statistics_reference_data/ --recursive --exclude "*" --include "*.json"
# To copy all data files to its own location, following Hive-style patterns:
aws s3 cp CAvideos.csv s3://de-on-youtube-raw-useast1-shiv-dev/youtube/raw_statistics/region=ca/
aws s3 cp DEvideos.csv s3://de-on-youtube-raw-useast1-shiv-dev/youtube/raw_statistics/region=de/
aws s3 cp FRvideos.csv s3://de-on-youtube-raw-useast1-shiv-dev/youtube/raw_statistics/region=fr/
aws s3 cp GBvideos.csv s3://de-on-youtube-raw-useast1-shiv-dev/youtube/raw_statistics/region=gb/
aws s3 cp INvideos.csv s3://de-on-youtube-raw-useast1-shiv-dev/youtube/raw_statistics/region=in/
aws s3 cp JPvideos.csv s3://de-on-youtube-raw-useast1-shiv-dev/youtube/raw_statistics/region=jp/
aws s3 cp KRvideos.csv s3://de-on-youtube-raw-useast1-shiv-dev/youtube/raw_statistics/region=kr/
aws s3 cp MXvideos.csv s3://de-on-youtube-raw-useast1-shiv-dev/youtube/raw_statistics/region=mx/
aws s3 cp RUvideos.csv s3://de-on-youtube-raw-useast1-shiv-dev/youtube/raw_statistics/region=ru/
aws s3 cp USvideos.csv s3://de-on-youtube-raw-useast1-shiv-dev/youtube/raw_statistics/region=us/