Report issue Add example

perl

The Perl language interpreter.

Description

The perl command is the interpreter for the Perl programming language. It is responsible for parsing and executing Perl scripts.

Syntax

perl [options] [scriptfile] [arguments]

Options

-w: Enable useful warning messages.
-U: Allow unsafe operations.
-c: Check the syntax of the script without executing it.
-d: Run the script under the Perl debugger.
-e <commandline>: Execute a single line of Perl code from the command line.

Parameters

File: The Perl script to be executed.