mirror of
https://github.com/minio/mc.git
synced 2025-11-14 23:42:27 +03:00
20 lines
429 B
Markdown
20 lines
429 B
Markdown
#### mb
|
|
|
|
```go
|
|
NAME:
|
|
mc mb - Make a bucket or folder
|
|
|
|
USAGE:
|
|
mc mb TARGET [TARGET...]
|
|
|
|
EXAMPLES:
|
|
1. Create a bucket on Amazon S3 object storage.
|
|
$ mc mb https://s3.amazonaws.com/public-document-store
|
|
|
|
3. Make a directory on local filesystem, including its parent directories as needed.
|
|
$ mc mb ~/
|
|
|
|
3. Create a bucket on Minio object storage.
|
|
$ mc mb https://play.minio.io:9000/mongodb-backup
|
|
```
|