command: add pipe command (#182)#587
Conversation
|
I tested this in production for uploading a 500 GB file that was the output of tar and it seemed to work well! Just wanted to add my 2 cents here. I did this by
tar -cf - "$INPUT" | zstd -1 --stdout | \
~/go/bin/s5cmd --endpoint-url "$S3_ENDPOINT" --credentials-file "$S5CMD_CREDENTIALS_FILE" \
pipe --part-size "$PART_SIZE_MB" "$S3_DESTINATION"Verifying the command completed successfully |
|
I think with refactoring |
We can have a common |
seruman
left a comment
There was a problem hiding this comment.
@ahmethakanbesel Can you update the changelog please?
I updated the changelog. |
|
@ahmethakanbesel There's a conflict on CHANGELOG. |
|
🎖️ |
|
So cool, thank you all! I've been waiting for this! |
Resolves #182 and #522
Added
pipecommand to uploadstdinoutput to a bucket.Example usage:
echo "content" | s5cmd pipe s3://bucket/file.txt