in reply to Re: Re: converting files in place
in thread In-place editing of files (was: general perl question)

What I meant was that my code can be dropped in the middle of a program, while to use the switches in the middle of a program you would have to spawn a new perl with those switches.
#!/usr/bin/perl -w ..... system(q#perl -i.bak -p -e '$_ = uc'#); .....