Update command usage

This commit is contained in:
Kobe Arthur Scofield 2024-09-12 19:47:56 +08:00 committed by GitHub
parent 23b4814e59
commit 1f52fdd34a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 117 additions and 5 deletions

View file

@ -103,9 +103,9 @@ xray api <command> [arguments]
### xray convert
把配置文件转换成 protobuf 或者把 typedMessage 转换成 json
把配置文件转换成 protobuf 或者把 typedMessage 转换成 JSON
使用方法:
使用方法
```
xray convert <command> [arguments]
@ -116,7 +116,7 @@ The commands are:
json Convert typedMessage to json
```
pb 子命令使用示例:
`pb` 子命令使用示例:
```bash
# 用法xray convert pb [-debug] [-type] [json file] [json file] ...

View file

@ -51,7 +51,12 @@ Default "json".
The -test flag tells Xray to test config files only,
without launching the server
The -dump flag tells Xray to print the merged config.
```
::: tip
Except from the default JSON format, config can also use TOML and YAML. It will automatically recognized from file extensions when the `-format` flag is not set.
:::
### xray version
@ -84,6 +89,59 @@ xray api <command> [arguments]
rmo Remove outbounds
```
### xray convert
Convert config to protobuf, or convert typedMessage to JSON
usage:
```
xray convert <command> [arguments]
The commands are:
pb Convert multiple json configs to protobuf
json Convert typedMessage to json
```
Sub-command `pb`
```bash
# Usage: xray convert pb [-debug] [-type] [json file] [json file] ...
# mix three config files to mix.pb
xray convert pb c1.json c2.json c3.json > mix.pb
# Use -debug option to view the content of mix.pb
xray convert pb -debug mix.pb
# Start Xray-core with mix.pb
xray -c mix.pb
# Detailed usage
xray help convert pb
```
Sub-command JSON
```bash
# Usage: xray convert json [-type] [stdin:] [typedMessage file]
tmsg='{
"type": "xray.proxy.shadowsocks.Account",
"value": "CgMxMTEQBg=="
}'
echo ${tmsg} | xray convert json stdin:
# Outputs from above:
'{
"cipherType": "AES_256_GCM",
"password": "111"
}'
# Detailed usage
xray help convert json
```
### xray tls
Some tools related to TLS.
@ -95,8 +153,9 @@ xray tls <command> [arguments]
```
```
cert Generate TLS certificates
ping Ping the domain with TLS handshake
cert Generate TLS certificates
ping Ping the domain with TLS handshake
certChainHash Calculate TLS certificates hash.
```
### xray uuid

View file

@ -103,6 +103,59 @@ xray api <command> [arguments]
rmo Remove outbounds
```
### xray convert
Convert config to protobuf, or convert typedMessage to JSON
usage:
```
xray convert <command> [arguments]
The commands are:
pb Convert multiple json configs to protobuf
json Convert typedMessage to json
```
Sub-command `pb`
```bash
# Usage: xray convert pb [-debug] [-type] [json file] [json file] ...
# mix three config files to mix.pb
xray convert pb c1.json c2.json c3.json > mix.pb
# Use -debug option to view the content of mix.pb
xray convert pb -debug mix.pb
# Start Xray-core with mix.pb
xray -c mix.pb
# Detailed usage
xray help convert pb
```
Sub-command JSON
```bash
# Usage: xray convert json [-type] [stdin:] [typedMessage file]
tmsg='{
"type": "xray.proxy.shadowsocks.Account",
"value": "CgMxMTEQBg=="
}'
echo ${tmsg} | xray convert json stdin:
# Outputs from above:
'{
"cipherType": "AES_256_GCM",
"password": "111"
}'
# Detailed usage
xray help convert json
```
### xray tls
Инструменты для работы с TLS.