https://github.com/bronzdoc/bucket
Cli to get informatin of AWS s3 buckets
https://github.com/bronzdoc/bucket
Last synced: 8 months ago
JSON representation
Cli to get informatin of AWS s3 buckets
- Host: GitHub
- URL: https://github.com/bronzdoc/bucket
- Owner: bronzdoc
- License: apache-2.0
- Created: 2017-01-26T02:33:33.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-30T02:37:20.000Z (over 9 years ago)
- Last Synced: 2025-02-18T06:42:41.611Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bucket
Cli to get information of s3 buckets
```
$ bucket list
[{
CreationDate: 2017-01-29 02:39:45 +0000 UTC,
Name: "bronzdoc-bucket-0"
} {
CreationDate: 2017-01-29 22:16:39 +0000 UTC,
Name: "bronzdoc-bucket-1"
}]
```
Bucket will use the `default` profile in `~/.aws/credentials` to authenticate
# Install
```
curl -L "https://github.com/bronzdoc/bucket/releases/download/0.0.1/bucket-$(uname -s)-$(uname -m)" -o /usr/local/bin/bucket; chmod +x /usr/local/bin/bucket
```
# Usage
```
$ bucket
Get information of your AWS S3 buckets
Usage:
bucket [command]
Available Commands:
list List AWS S3 buckets
show Show AWS S3 bucket objects
version Print the version number of Bucket
Flags:
--config string config file (default is $HOME/.bucket.yaml)
Use "bucket [command] --help" for more information about a command.
```