Forrest logo
back to context overview

aws-s3-ls

List of commands for aws-s3-ls:

  • aws-s3-ls:tldr:06e1d aws-s3-ls: List all buckets.
    $ aws s3 ls
    try on your machine
    explain this command
  • aws-s3-ls:tldr:13dc8 aws-s3-ls: List all files in a bucket.
    $ aws s3 ls --recursive ${bucket_name}
    try on your machine
    explain this command
  • aws-s3-ls:tldr:abd74 aws-s3-ls: List files and folders directly inside a directory.
    $ aws s3 ls ${bucket_name}/${path-to-directory}/
    try on your machine
    explain this command
  • aws-s3-ls:tldr:cc54a aws-s3-ls: List all files in a path with a given prefix.
    $ aws s3 ls --recursive ${bucket_name}/${path-to-directory-}${prefix}
    try on your machine
    explain this command
  • aws-s3-ls:tldr:ef455 aws-s3-ls: Display help.
    $ aws s3 ls help
    try on your machine
    explain this command
  • aws-s3-ls:tldr:f8d02 aws-s3-ls: List files and folders in the root of a bucket (`s3://` is optional).
    $ aws s3 ls s3://${bucket_name}
    try on your machine
    explain this command
back to context overview