./coscli --help
or ./coscli -h
command.Option | Description |
-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 | Custom coscli.log file location, which is in the same directory as COSCLI by default. You can specify a directory or a specific file (the file must end with .log), for example, /data/ or /data/coscli.log. |
-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 AKIDYv3vWrwkHXVDfqkNjoc9PP8anjOm**** -k 4rNbYF1XmmVw67rKWTBernUu66u****
Was this page helpful?