> ## Documentation Index
> Fetch the complete documentation index at: https://docs.xray.cool/llms.txt
> Use this file to discover all available pages before exploring further.

# 运行策略组

## 文件格式

* 策略组文件实际上是一个txt文件，一行表示一个加载策略，一般约定使用`.list`作为文件后缀
* 每行中可以写相对路径，绝对路径，以及glob风格的路径

### 具体示例

**绝对路径**

```text theme={null}
/root/xray-plugins/finger/manual/web/Azure.yml
/root/xray-plugins/finger/manual/service/*.yml
```

**相对路径**

相对运行目录的路径：

```text theme={null}
finger/manual/web/Azure.yml
finger/manual/service/*.yml
```

如果希望是相对这个策略组文件的路径，则可以写：

```text theme={null}
{{path}}/../finger/manual/web/Azure.yml
{{path}}/../finger/manual/service/*.yml
```

系统会自动取当前策略组文件的路径，替换到`{{path}}`中。
