perl: add page (#1142)

This commit is contained in:
Assem Attia 2016-11-05 21:14:19 +02:00 committed by Waldir Pimenta
parent 39f27492c7
commit b9bb46e6de

23
pages/common/perl.md Normal file
View File

@ -0,0 +1,23 @@
# perl
> The Perl 5 language interpreter.
- Parse and execute a `script.pl`:
`perl {{script.pl}}`
- Parse and execute a `perl_statement`:
`perl -e {{perl_statement}}`
- Check syntax errors on `script.pl`:
`perl -c {{script.pl}}`
- Import module before execution:
`perl -M{{module}} -e {{perl_statement}}`
- Run `script.pl` in debug mode using `perldebug`:
`perl -d {{script.pl}}`