github.com/igoogolx/clash@v1.19.8/docs/zh_CN/premium/script-shortcuts.md (about)

     1  ---
     2  sidebarTitle: "功能: Script Shortcuts 脚本捷径"
     3  sidebarOrder: 6
     4  ---
     5  
     6  # Script Shortcuts 脚本捷径
     7  
     8  Clash Premium 实现了基于 Python3 的脚本功能, 允许用户以动态灵活的方式为数据包选择策略.
     9  
    10  您可以使用单个 Python 脚本控制整个规则匹配引擎, 也可以定义一些 Shortcuts 捷径并将它们与常规规则一起使用. 本页参考后者功能. 有关前者, 请参见 [脚本](./script.md).
    11  
    12  此功能使得在 `rules` 模式下使用脚本成为可能. 默认情况下, DNS 解析将在 SCRIPT 规则中进行. 可以在规则后面添加 `no-resolve` 来阻止解析. (例如: `SCRIPT,quic,DIRECT,no-resolve`)
    13  
    14  ```yaml
    15  mode: Rule
    16  
    17  script:
    18    engine: expr # or starlark (10x to 20x slower)
    19    shortcuts:
    20      quic: network == 'udp' and dst_port == 443
    21      curl: resolve_process_name() == 'curl'
    22      # curl: resolve_process_path() == '/usr/bin/curl'
    23  
    24  rules:
    25    - SCRIPT,quic,REJECT
    26  ```
    27  
    28  ## 评估引擎
    29  
    30  [Expr](https://expr.medv.io/) 作为 Script Shortcuts 的默认引擎, 相比 Starlark 提供了 10 倍到 20 倍的性能提升.
    31  
    32  [Starlark](https://github.com/google/starlark-go) 是一种类似 Python 的配置语言, 您也可以将其用于 Script Shortcuts.
    33  
    34  ## 变量
    35  
    36  - network: string
    37  - type: string
    38  - src_ip: string
    39  - dst_ip: string
    40  - src_port: uint16
    41  - dst_port: uint16
    42  - inbound_port: uint16
    43  - host: string
    44  - process_path: string
    45  
    46  ::: warning
    47  Starlark 目前不包含 `process_path` 变量.
    48  :::
    49  
    50  ## 函数
    51  
    52  ```ts
    53  type resolve_ip = (host: string) => string // ip string
    54  type in_cidr = (ip: string, cidr: string) => boolean // ip in cidr
    55  type in_ipset = (name: string, ip: string) => boolean // ip in ipset
    56  type geoip = (ip: string) => string // country code
    57  type match_provider = (name: string) => boolean // in rule provider
    58  type resolve_process_name = () => string // find process name (curl .e.g)
    59  type resolve_process_path = () => string // find process path (/usr/bin/curl .e.g)
    60  ```