Skip to main content

Command Palette

Search for a command to run...

cat s3 object using CLI without download

AWS/AWS Command Line Interface

Updated
1 min read
cat s3 object using CLI without download
  • outline

We can NOT check objects on S3 bucket S3 without downloading. Below is simple trick of checking object on S3 bucket.

  • how-to-check
aws s3 cp --quiet s3://<bucket-name>/foo_bar.txt /dev/stdout
cat s3 object using CLI without download