Another S3 command line utility

A quick and extremely simple utility for interacting with S3 compatible object stores because all the other tools I could find needed configuration and I'm not into it.

Based on durch/rust-s3.

Status

Build GitHub tag Crates.io Docs.rs

Usage

See s3-util [SUBCOMMAND] --help for information, you need to configure all the options as appropriate for your object-storage provider.

``` s3-util 0.1.0

USAGE: s3-util [OPTIONS] --access-key --bucket --endpoint --region --secret-key

FLAGS: -h, --help Prints help information -V, --version Prints version information

OPTIONS: --access-key Access key for bucket [env: ACCESSKEY=] --bucket Bucket name [env: S3BUCKET=] --endpoint Bucket endpoint (eg. amazonaws.com) [env: S3ENDPOINT=] --log-level [default: info] --region Bucket region (eg. s3-ap-northeast-1) [env: S3REGION=] --secret-key Secret key for bucket [env: SECRET_KEY=]

SUBCOMMANDS: delete Delete an item from the bucket download Download an item from the bucket help Prints this message or the help of the given subcommand(s) list Show items in bucket upload Upload an item to the bucket ```

Alternatives