TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

S3st: Stream data from multiple S3 objects directly into your terminal

61 pointsby loigeover 5 years ago

7 comments

aliencatover 5 years ago
You can also acomplish this with shell:<p>export BUCKET=____; aws s3 ls &quot;$BUCKET&quot; | tail -n+2 | awk &#x27;{print $4}&#x27; | while read k; do aws s3 cp &quot;s3:&#x2F;&#x2F;$BUCKET&#x2F;$k&quot; -; done
评论 #21175289 未加载
tbrockover 5 years ago
Cool. I had a similar use case and created a tool to stream colorized logs from CloudWatch to your terminal that is a little more ergonomic to use than this:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;TylerBrock&#x2F;saw" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;TylerBrock&#x2F;saw</a>
评论 #21175303 未加载
djhworldover 5 years ago
One thing to be careful of with this is the Data Transfer (egress) cost you will incur streaming data out from S3.<p>If you&#x27;re just wanting to do a &#x27;grep&#x27; style action on an S3 prefix, might be worth looking into &quot;S3 Select&quot;for your use case instead
评论 #21175294 未加载
saimiamover 5 years ago
Pretty neat. I&#x27;m working on a product that relies heavily on S3 buckets and tagged files.<p>Does s3st support tags or other ways of identifying which files to stream other than filtering by the content of the files? Asking because I didn&#x27;t see this feature in the demo.
评论 #21175326 未加载
empthoughtover 5 years ago
What are the advantages of this over a shell pipeline with aws-cli?
评论 #21172893 未加载
评论 #21173064 未加载
alainchabatover 5 years ago
We have a large s3 bucket 2 billions objects and we start thinking about cleaning it a bit. Is anyone had done such things or any tools on :<p>- categorising what&#x27;s inside<p>- checking what&#x27;s used or not<p>Thanks!
评论 #21173219 未加载
评论 #21173462 未加载
评论 #21173946 未加载
sdanover 5 years ago
What are the potential use cases?
评论 #21171093 未加载