Difference between revisions of "Perl"
From Teknologisk videncenter
m |
m (→One liners) |
||
Line 4: | Line 4: | ||
=Development tools= | =Development tools= | ||
*[[Perl/IDE|Integrated Development Environment]] - IDE - for Perl | *[[Perl/IDE|Integrated Development Environment]] - IDE - for Perl | ||
+ | =Regular expressions= | ||
+ | *[[Regular Expression Perl]] Mainpage | ||
= One liners = | = One liners = | ||
+ | *See [[Regular_Expression_Perl/Oneliners]] | ||
== Search and replace in files == | == Search and replace in files == | ||
You could also use find and sed. | You could also use find and sed. |
Revision as of 06:20, 4 September 2010
- wikiversity perl
Development tools
- Integrated Development Environment - IDE - for Perl
Regular expressions
- Regular Expression Perl Mainpage
One liners
Search and replace in files
You could also use find and sed.
perl -pi -w -e 's/SEARCH/REPLACE/g;' *.php
- e means execute the following line of code.
- i means edit in-place
- w write warnings
- p loop