Bidirectional syncing tool to sync local filesystem directories with S3 buckets. (Incomplete)
{#} | Time | Hash | Subject | Author | # | (+) | (-) | GPG? |
---|---|---|---|---|---|---|---|---|
5 | 18 Oct 2021 20:59 | dac3807 | Create install script; set up source directory | Josh Stockin | 1 | 6 | 4 | G |
1 | LIST: aws s3api list-objects-v2 --bucket $BUCKET --prefix $PREFIX |
2 | GET: aws s3api get-object --bucket $BUCKET --key $KEY $OUTFILE |
3 | HEAD: aws s3api head-object --bucket $BUCKET --key $KEY |
4 | COPY: aws s3api copy-object --bucket $BUCKET --key $NEWKEY --copy-source $BUCKET/$OLDKEY |
5 | DELETE: aws s3api delete-object --bucket $BUCKET --key $KEY |
6 | PUT: aws s3api put-object --bucket $BUCKET --key $KEY --body $FILE |
7 |