You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
473 B

7 years ago
perl
===
perl语言解释器
## 补充说明
**perl命令** 是perl语言解释器负责解释执行perl语言程序。
### 语法
```
perl(选项)(参数)
```
### 选项
```
-w输出有用的警告信息
-U允许不安全的操作
-c仅检查文件的语法
-d在调试下运行脚本程序。
```
### 参数
文件要运行的perl脚本程序。
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->