mirror of
https://github.com/minio/mc.git
synced 2025-11-10 13:42:32 +03:00
82 lines
2.2 KiB
Go
82 lines
2.2 KiB
Go
// Copyright (c) 2015-2022 MinIO, Inc.
|
|
//
|
|
// This file is part of MinIO Object Storage stack
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/minio/cli"
|
|
)
|
|
|
|
// Collection of mc flags currently supported
|
|
var globalFlags = []cli.Flag{
|
|
cli.StringFlag{
|
|
Name: "config-dir, C",
|
|
Value: mustGetMcConfigDir(),
|
|
Usage: "path to configuration folder",
|
|
},
|
|
cli.BoolFlag{
|
|
Name: "quiet, q",
|
|
Usage: "disable progress bar display",
|
|
},
|
|
cli.BoolFlag{
|
|
Name: "no-color",
|
|
Usage: "disable color theme",
|
|
},
|
|
cli.BoolFlag{
|
|
Name: "json",
|
|
Usage: "enable JSON lines formatted output",
|
|
},
|
|
cli.BoolFlag{
|
|
Name: "debug",
|
|
Usage: "enable debug output",
|
|
},
|
|
cli.BoolFlag{
|
|
Name: "insecure",
|
|
Usage: "disable SSL certificate verification",
|
|
},
|
|
cli.StringFlag{
|
|
Name: "limit-upload",
|
|
Usage: "limits uploads to a maximum rate in KiB/s, MiB/s, GiB/s. (default: unlimited)",
|
|
},
|
|
cli.StringFlag{
|
|
Name: "limit-download",
|
|
Usage: "limits downloads to a maximum rate in KiB/s, MiB/s, GiB/s. (default: unlimited)",
|
|
},
|
|
cli.DurationFlag{
|
|
Name: "conn-read-deadline",
|
|
Usage: "custom connection READ deadline",
|
|
Hidden: true,
|
|
Value: 10 * time.Minute,
|
|
},
|
|
cli.DurationFlag{
|
|
Name: "conn-write-deadline",
|
|
Usage: "custom connection WRITE deadline",
|
|
Hidden: true,
|
|
Value: 10 * time.Minute,
|
|
},
|
|
}
|
|
|
|
// Flags common across all I/O commands such as cp, mirror, stat, pipe etc.
|
|
var ioFlags = []cli.Flag{
|
|
cli.StringFlag{
|
|
Name: "encrypt-key",
|
|
Usage: "encrypt/decrypt objects (using server-side encryption with customer provided keys)",
|
|
},
|
|
}
|