> For the complete documentation index, see [llms.txt](https://hezhiqiang.gitbook.io/linux/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hezhiqiang.gitbook.io/linux/ming-ling/perl.md).

# perl

perl语言解释器

## 补充说明

**perl命令** 是perl语言解释器，负责解释执行perl语言程序。

### 语法

```
perl(选项)(参数)
```

### 选项

```
-w：输出有用的警告信息；
-U：允许不安全的操作；
-c：仅检查文件的语法；
-d：在调试下运行脚本程序。
```

### 参数

文件：要运行的perl脚本程序。
