
s5cmd is a very fast S3 and local filesystem execution tool. It comes with support
for a multitude of operations including tab completion and wildcard support
for files, which can be very handy for your object storage workflow while working
with large number of files.
There are already other utilities to work with S3 and similar object storage
services, thus it is natural to wonder what s5cmd has to offer that others don't.
In short, s5cmd offers a very fast speed.
Thanks to Joshua Robinson for his
study and experimentation on s5cmd; to quote his medium post:
For uploads, s5cmd is 32x faster than s3cmd and 12x faster than aws-cli. For downloads, s5cmd can saturate a 40Gbps link (~4.3 GB/s), whereas s3cmd and aws-cli can only reach 85 MB/s and 375 MB/s respectively.
If you would like to know more about performance of s5cmd and the
reasons for its fast speed, refer to benchmarks section

s5cmd supports wide range of object management tasks both for cloud
storage services and local filesystems.
The Releases page provides pre-built binaries for Linux, macOS and Windows.
For macOS, a homebrew tap is provided:
brew install peak/tap/s5cmd
Warning These releases are maintained by the community. They might be out of date compared to the official releases.
You can also install s5cmd from MacPorts on macOS:
sudo port selfupdate
sudo port install s5cmd
s5cmd is included in the conda-forge channel, and it can be downloaded through the Conda.
Installing
s5cmdfrom theconda-forgechannel can be achieved by addingconda-forgeto your channels with:conda config --add channels conda-forge conda config --set channel_priority strictOnce the
conda-forgechannel has been enabled,s5cmdcan be installed withconda:
conda install s5cmdps. Quoted from s5cmd feedstock. You can also find further instructions on its README.
On FreeBSD you can install s5cmd as a package:
pkg install s5cmd
or via ports:
cd /usr/ports/net/s5cmd
make install clean
You can build s5cmd from source if you have Go 1.19+
installed.
go install github.com/peak/s5cmd/v2@master
⚠️ Please note that building from master is not guaranteed to be stable since
development happens on master branch.
$ docker pull peakcom/s5cmd
$ docker run --rm -v ~/.aws:/root/.aws peakcom/s5cmd <S3 operation>
ℹ️ /aws directory is the working directory of the image. Mounting your current working directory to it allows you to run s5cmd as if it was installed in your system;
docker run --rm -v $(pwd):/aws -v ~/.aws:/root/.aws peakcom/s5cmd <S3 operation>
$ git clone https://github.com/peak/s5cmd && cd s5cmd
$ docker build -t s5cmd .
$ docker run --rm -v ~/.aws:/root/.aws s5cmd <S3 operation>
s5cmd supports multiple-level wildcards for all S3 operations. This is
achieved by listing all S3 objects with the prefix up to the first wildcard,
then filtering the results in-memory. For example, for the following command;
s5cmd cp 's3://bucket/logs/2020/03/*' .
first a ListObjects request is send, then the copy operation will be executed
against each matching object, in parallel.
s5cmd uses official AWS SDK to access S3. SDK requires credentials to sign
requests to AWS. Credentials can be provided in a variety of ways:
Command line options --profile to use a named profile, --credentials-file flag to use the specified credentials file
```sh
s5cmd --profile my-work-profile ls s3://my-company-bucket/
s5cmd --credentials-file ~/.your-credentials-file --profile my-work-profile ls s3://my-company-bucket/ ```
Environment variables
```sh
export AWS_ACCESS_KEY_ID='' export AWS_SECRET_ACCESS_KEY='' export AWS_PROFILE='' export AWS_REGION=''
s5cmd ls s3://your-bucket/ ```
If s5cmd runs on an Amazon EC2 instance, EC2 IAM role
s5cmd runs on EKS, Kube IAM roleOr, you can send requests anonymously with --no-sign-request option
```sh
s5cmd --no-sign-request ls s3://public-bucket/ ```
While executing the commands, s5cmd detects the region according to the following order of priority:
--source-region or --destination-region flags of cp command.AWS_REGION environment variable.HeadBucket API call).us-east-1 as default region.s5cmd head s3://bucket/
s5cmd head s3://bucket/object.gz
s5cmd cp s3://bucket/object.gz .
Suppose we have the following objects:
s3://bucket/logs/2020/03/18/file1.gz
s3://bucket/logs/2020/03/19/file2.gz
s3://bucket/logs/2020/03/19/originals/file3.gz
s5cmd cp 's3://bucket/logs/2020/03/*' logs/
s5cmd will match the given wildcards and arguments by doing an efficient
search against the given prefixes. All matching objects will be downloaded in
parallel. s5cmd will create the destination directory if it is missing.
logs/ directory content will look like:
$ tree
.
└── logs
├── 18
│ └── file1.gz
└── 19
├── file2.gz
└── originals
└── file3.gz
4 directories, 3 files
ℹ️ s5cmd preserves the source directory structure by default. If you want to
flatten the source directory structure, use the --flatten flag.
s5cmd cp --flatten 's3://bucket/logs/2020/03/*' logs/
logs/ directory content will look like:
$ tree
.
└── logs
├── file1.gz
├── file2.gz
└── file3.gz
1 directory, 3 files
s5cmd cp object.gz s3://bucket/
by setting server side encryption (aws kms) of the file:
s5cmd cp -sse aws:kms -sse-kms-key-id <your-kms-key-id> object.gz s3://bucket/
by setting Access Control List (acl) policy of the object:
s5cmd cp -acl bucket-owner-full-control object.gz s3://bucket/
s5cmd cp directory/ s3://bucket/
Will upload all files at given directory to S3 while keeping the folder hierarchy of the source.
You can upload remote objects by piping stdin to s5cmd:
curl https://github.com/peak/s5cmd/ | s5cmd pipe s3://bucket/s5cmd.html
Or you can compress the data before uploading:
gzip -c file | s5cmd pipe s3://bucket/file.gz
s5cmd rm s3://bucket/logs/2020/03/18/file1.gz
s5cmd rm s3://bucket/logs/2020/03/19/*
Will remove all matching objects:
s3://bucket/logs/2020/03/19/file2.gz
s3://bucket/logs/2020/03/19/originals/file3.gz
s5cmd utilizes S3 delete batch API. If matching objects are up to 1000,
they'll be deleted in a single request. However, it should be noted that commands such as
s5cmd rm s3://bucket-foo/object s3://bucket-bar/object
are not supported by s5cmd and result in error (since we have 2 different buckets), as it is in odds with the benefit of performing batch delete requests. Thus, if in need, one can use s5cmd run mode for this case, i.e,
$ s5cmd run
rm s3://bucket-foo/object
rm s3://bucket-bar/object
more details and examples on s5cmd run are presented in a later section.
s5cmd supports copying objects on the server side as well.
s5cmd cp 's3://bucket/logs/2020/*' s3://bucket/logs/backup/
Will copy all the matching objects to the given S3 prefix, respecting the source folder hierarchy.
⚠️ Copying objects (from S3 to S3) larger than 5GB is not supported yet. We have an open ticket to track the issue.
s5cmd supports the --exclude and --include flags, which can be used to specify patterns for objects to be excluded or included in commands.
--exclude flag specifies objects that should be excluded from the operation. Any object that matches the pattern will be skipped.--include flag specifies objects that should be included in the operation. Only objects that match the pattern will be handled.--exclude has precedence over --include. This means that if an object URL matches any of the --exclude patterns, the object will be skipped, even if it also matches one of the --include patterns.aws-cli).The command below will delete only objects that end with .log.
s5cmd rm --include "*.log" 's3://bucket/logs/2020/*'
The command below will delete all objects except those that end with .log or .txt.
s5cmd rm --exclude "*.log" --exclude "*.txt" 's3://bucket/logs/2020/*'
If you wish, you can use multiple flags, like below. It will download objects that start with request or end with .log.
s5cmd cp --include "*.log" --include "request*" 's3://bucket/logs/2020/*' .
Using a combination of --include and --exclude also possible. The command below will only sync objects that end with .log or .txt but exclude those that start with access_. For example, request.log, and license.txt will be included, while access_log.txt, and readme.md are excluded.
s5cmd sync --include "*.log" --exclude "access_*" --include "*.txt" 's3://bucket/logs/*' .
s5cmd supports the SelectObjectContent S3 operation, and will run your
SQL query
against objects matching normal wildcard syntax and emit matching JSON records via stdout. Records
from multiple objects will be interleaved, and order of the records is not guaranteed (though it's
likely that the records from a single object will arrive in-order, even if interleaved with other
records).
$ s5cmd select --compression GZIP \
--query "SELECT s.timestamp, s.hostname FROM S3Object s WHERE s.ip_address LIKE '10.%' OR s.application='unprivileged'" \
s3://bucket-foo/object/2021/*
{"timestamp":"2021-07-08T18:24:06.665Z","hostname":"application.internal"}
{"timestamp":"2021-07-08T18:24:16.095Z","hostname":"api.github.com"}
At the moment this operation only supports JSON records selected with SQL. S3 calls this lines-type JSON, but it seems that it works even if the records aren't line-delineated. YMMV.
$ s5cmd du --humanize 's3://bucket/2020/*'
30.8M bytes in 3 objects: s3://bucket/2020/*
The most powerful feature of s5cmd is the commands file. Thousands of S3 and
filesystem commands are declared in a file (or simply piped in from another
process) and they are executed using multiple parallel workers. Since only one
program is launched, thousands of unnecessary fork-exec calls are avoided. This
way S3 execution times can reach a few thousand operations per second.
s5cmd run commands.txt
or
cat commands.txt | s5cmd run
commands.txt content could look like:
cp s3://bucket/2020/03/* logs/2020/03/
# line comments are supported
rm s3://bucket/2020/03/19/file2.gz
# empty lines are OK too like above
# rename an S3 object
mv s3://bucket/2020/03/18/file1.gz s3://bucket/2020/03/18/original/file.gz
sync command synchronizes S3 buckets, prefixes, direct
$ claude mcp add s5cmd \
-- python -m otcore.mcp_server <graph>