I have hundreds of files in my local directory and I want to treat them as parts of a single file and upload them to s3, I want them as a single file in s3. ideally, I want to use s3fs or boto3 to accomplish this but any other approach is also good.
There is no provided command that does that, so your options are:
cat
) and then upload a single file using boto3, orBody
for the boto3 upload (but that might cause problems if the combined size is huge)