![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| [PERL] Running unix commands within Perl Scripts | userix | Shell Programming and Scripting | 1 | 05-28-2008 06:06 PM |
| Perl module question | hankooknara | Shell Programming and Scripting | 3 | 07-08-2007 07:26 AM |
| PERL DBI module install | jerardfjay | Shell Programming and Scripting | 3 | 10-27-2006 10:29 AM |
| Help needed in Perl LWP module | dayanandra | Shell Programming and Scripting | 1 | 10-05-2006 09:47 AM |
| Writing perl module | jo_aze | Shell Programming and Scripting | 4 | 08-06-2003 11:10 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Replace Perl Module name in all Perl scripts
I want to replace a Perl module name in all my Perl Scripts in the cgi-bin directory. How is it possible?
I have the following statement in my scripts use myUtil; I want to change it to use myUtil777; Regards, Rahul |
|
||||
|
One mroe soln which i got
find . –name *.pl –type f | xargs perl -pi -e 's/myutil/myutil777/g'
Regards, Rahul. |
| Sponsored Links | ||
|
|