mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-19 01:35:26 +02:00

Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
17 lines
400 B
Markdown
17 lines
400 B
Markdown
# mc
|
|
|
|
> MinIO Client for object storage and filesystems.
|
|
> May be named `mc` or `mcli` on some systems.
|
|
> More information: <https://minio.github.io/mc/>.
|
|
|
|
- Add connection to a S3 server:
|
|
|
|
`mc alias set {{local}} {{http://localhost:9000}} {{access_key}} {{secret_key}}`
|
|
|
|
- Create a bucket:
|
|
|
|
`mc mb {{local/bucket_name}}`
|
|
|
|
- List buckets and their content recursively:
|
|
|
|
`mc ls {{local}} --recursive`
|