S3 CLI
A CLI for uploading, fetching and deleting content to/from an S3-compatible
blobstore.
Continuous integration: https://bosh-cpi.ci.cf-app.com/pipelines/s3cli
Releases can be found in https://s3cli-artifacts.s3.amazonaws.com. The Linux binaries follow the regex s3cli-(\d+\.\d+\.\d+)-linux-amd64
and the windows binaries s3cli-(\d+\.\d+\.\d+)-windows-amd64
.
Installation
go get github.com/pivotal-golang/s3cli
Usage
Given a JSON config file (config.json
)...
{
"bucket_name": "<string> (required)",
"credentials_source": "<string> [static|env_or_profile|none]",
"access_key_id": "<string> (required if credentials_source = 'static')",
"secret_access_key": "<string> (required if credentials_source = 'static')",
"region": "<string> (optional - default: 'us-east-1')",
"host": "<string> (optional)",
"port": <int> (optional),
"ssl_verify_peer": <bool> (optional),
"use_ssl": <bool> (optional),
"signature_version": "<string> (optional)",
"server_side_encryption": "<string> (optional)",
"sse_kms_key_id": "<string> (optional)"
}
# Usage
s3cli --help
# Command: "put"
# Upload a blob to an S3-compatible blobstore.
s3cli -c config.json put <path/to/file> <remote-blob>
# Command: "get"
# Fetch a blob from an S3-compatible blobstore.
# Destination file will be overwritten if exists.
s3cli -c config.json get <remote-blob> <path/to/file>
# Command: "delete"
# Remove a blob from an S3-compatible blobstore.
s3cli -c config.json delete <remote-blob>
# Command: "exists"
# Checks if blob exists in an S3-compatible blobstore.
s3cli -c config.json exists <remote-blob>
Contributing
Follow these steps to make a contribution to the project:
- Fork this repository
- Create a feature branch based upon the
develop
branch (pull requests must be made against this branch)
git checkout -b feature-name origin/develop
- Run tests to check your development environment setup
ginkgo -r -race -skipPackage=integration ./
- Make your changes (be sure to add/update tests)
- Run tests to check your changes
ginkgo -r -race -skipPackage=integration ./
- Push changes to your fork
git add .
git commit -m "Commit message"
git push origin feature-name
- Create a GitHub pull request, selecting
develop
as the target branch