./coscli --help or ./coscli -h command.Option | Note |
-h, --help | Outputs help information. You can view the help information and usage of the tool with the -h or --help command. You can also enter -h after each command (with no parameter appended) to see how to use the command. For example, to view the specific usage of the bucket creation command, enter coscli mb -h. |
-c, --config-path | Configuration file path, which is ~/.cos.yaml for COSCLI by default. You can also specify a custom configuration file by adding -c after a command. |
-e, --endpoint | In addition to configuring the region of a bucket in advance in the configuration file, you can also use -e in COSCLI to specify the bucket endpoint in the format of cos.<region>.myqcloud.com, where <region> represents the bucket region, such as ap-guangzhou and ap-beijing. For the list of regions supported by COS, see Regions and Access Endpoints. |
-i, --secret-id | Specifies the SecretId used to access COS. |
-k, --secret-key | Specifies the SecretKey used to access COS. |
--session-token | Access COS with a temporary key. |
-v, --version | Displays the COSCLI version. |
-p, --protocol | Network transfer protocol, which is HTTPS by defaul. |
--init-skip | By default, it is false. If it is set to true (--init-skip=true), skip the config init interactive operation, and directly use the SecretId, SecretKey, and endpoint parameters to request the APIs. When this parameter is used, the -i, -k, and -e parameters must be configured. |
--log-path | Customize the coscli.log file location, in the same directory as COSCLI by default. Specify a directory or specific file (the file must end with .log), for example: /data/ or /data/coscli.log. |
--customized | By default, it is false. When set to true, enable the custom domain name and specify it using the --endpoint (-e) parameter. |
--disable-log | Defaults to false. When set to true, it disables the generation of coscli.log and the output of corresponding logs. |
--bucket-type | Specify the current bucket access type (COS/OFS). |
-e option to specify the endpoint of the bucket.test.txt to the bucket examplebucket-1250000000 in the Chengdu region with the endpoint cos.ap-chengdu.myqcloud.com, run the following command:./coscli cp test.txt cos://examplebucket-1250000000/test.txt -e cos.ap-chengdu.myqcloud.com
-i and -k options to specify the SecretId and SecretKey of your key respectively.examplebucket-1250000000 in the Chengdu region, run the following command:./coscli ls cos://examplebucket-1250000000 -e cos.ap-chengdu.myqcloud.com -i ******************************** -k ********************************
Feedback