The Perl 5 language interpreter. More information: https://www.perl.org.
perl {{script.pl}}
perl -c {{script.pl}}
perl -e {{perl_statement}}
perldebug
:perl -d {{script.pl}}
perl -p -i -e 's/{{find}}/{{replace}}/g' {{filename}}
perl -p -i'.old' -e 's/{{find}}/{{replace}}/g' {{filename}}
perl -p0e 's/{{foo\nbar}}/{{foobar}}/g' {{input_file}} > {{output_file}}
stdin
, printing out the first capture group for each line:cat {{path/to/input_file}} | perl -nle 'if (/.*({{foo}}).*/) {print "$1"; last;}'