Click here to get back home

FAQ 5.4 How can I use Perl's "-i" option from within a program?

 HomeNewsGroups | Search | About
 comp.lang.perl.misc    Post an article   get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content
Subject Author Date
FAQ 5.4 How can I use Perl's "-i" option from within a program? PerlFAQ Server 03-06-2008
Posted by PerlFAQ Server on March 6, 2008, 9:03 pm
Please log in for more thread options
This is an excerpt from the latest version perlfaq5.pod, which
comes with the standard Perl distribution. These postings aim to
reduce the number of repeated questions as well as allow the community
to review and update the answers. The latest version of the complete
perlfaq is at http://faq.perl.org .

--------------------------------------------------------------------

5.4: How can I use Perl's "-i" option from within a program?


"-i" sets the value of Perl's $^I variable, which in turn affects the
behavior of "<>"; see perlrun for more details. By modifying the
appropriate variables directly, you can get the same behavior within a
larger program. For example:

# ...
{
local($^I, @ARGV) = ('.orig', glob("*.c"));
while (<>) {
if ($. == 1) {
print "This line should appear at the top of each
file\n";
}
s/\b(p)earl\b/erl/i; # Correct typos, preserving
case
print;
close ARGV if eof; # Reset $.
}
}
# $^I and @ARGV return to their old values here

This block modifies all the ".c" files in the current directory, leaving
a backup of the original data from each file in a new ".c.orig" file.



--------------------------------------------------------------------

The perlfaq-workers, a group of volunteers, maintain the perlfaq. They
are not necessarily experts in every domain where Perl might show up,
so please include as much information as possible and relevant in any
corrections. The perlfaq-workers also don't have access to every
operating system or platform, so please include relevant details for
corrections to examples that do not work on particular platforms.
Working code is greatly appreciated.

If you'd like to help maintain the perlfaq, see the details in
perlfaq.pod.

Similar ThreadsPosted
FAQ 5.4 How can I use Perl's "-i" option from within a program? January 26, 2005, 6:03 am
FAQ 5.4 How can I use Perl's "-i" option from within a program? April 10, 2005, 11:03 am
FAQ 5.4 How can I use Perl's "-i" option from within a program? June 26, 2005, 5:03 am
FAQ 5.4 How can I use Perl's "-i" option from within a program? September 4, 2005, 4:03 pm
FAQ 5.4 How can I use Perl's "-i" option from within a program? November 17, 2005, 5:03 pm
FAQ 5.4 How can I use Perl's "-i" option from within a program? February 2, 2006, 12:03 pm
FAQ 5.4 How can I use Perl's "-i" option from within a program? March 17, 2006, 3:03 am
FAQ 5.4 How can I use Perl's "-i" option from within a program? April 23, 2006, 3:03 am
FAQ 5.4 How can I use Perl's "-i" option from within a program? July 1, 2006, 9:03 pm
FAQ 5.4 How can I use Perl's "-i" option from within a program? July 25, 2006, 9:03 am

Our other projects:

Art Dolls, Fairies and Mermaids - Sunnyfaces.net

Roy's Linux, Programming and Search Engines messages

1-Script XML SitemapXML Sitemap