linux 命令和教程补充

This commit is contained in:
estomm
2021-12-24 11:16:28 +08:00
parent 40e916976b
commit b7c3653392
586 changed files with 46455 additions and 39 deletions

29
Linux/command/perl.md Normal file
View File

@@ -0,0 +1,29 @@
perl
===
perl语言解释器
## 补充说明
**perl命令** 是perl语言解释器负责解释执行perl语言程序。
### 语法
```shell
perl(选项)(参数)
```
### 选项
```shell
-w输出有用的警告信息
-U允许不安全的操作
-c仅检查文件的语法
-d在调试下运行脚本程序。
```
### 参数
文件要运行的perl脚本程序。