💾 Archived View for freeshell.de › tldr › perl.gmi captured on 2023-01-29 at 05:08:51. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2022-04-28)
-=-=-=-=-=-=-
The Perl 5 language interpreter.
perl {script.pl}
perl -c {script.pl}
perl -e {perl_statement}
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}
cat {path/to/input_file} | perl -nle 'if (/.*({foo}).*/) {print "$1"; last;}'
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).