Forrest logo
back to context overview

aws-s3

List of commands for aws-s3:

  • aws-s3:tldr:0fe3b aws-s3: Show files in a bucket.
    $ aws s3 ls ${bucket_name}
    try on your machine
    explain this command
  • aws-s3:tldr:24b73 aws-s3: Sync files and directories with exclusions.
    $ aws s3 sync ${filenames} s3://${bucket_name} --exclude ${filename} --exclude ${path-to-directory}/*
    try on your machine
    explain this command
  • aws-s3:tldr:43d49 aws-s3: Preview changes only.
    $ aws s3 ${any_command} --dryrun
    try on your machine
    explain this command
  • aws-s3:tldr:e83e3 aws-s3: Sync files and directories from local to bucket.
    $ aws s3 sync ${filenames} s3://${bucket_name}
    try on your machine
    explain this command
back to context overview