Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tie::File alternative

Status
Not open for further replies.

chrismassey

Programmer
Aug 24, 2007
264
GB
I was wondering if there is an alternative module to Tie::File

I want to access a particular line in a file, and re-write it.

Thanks,

Chris
 
Tie::File would be perfect! Except, I cannot find any documentation on how to install a module on a 1and1 linux web server. I also need to have this script working by the end of today so i'm in a bit of a rush...

In case you are interested:
1and1 homepage - 1and1 modules already installed -
Chris
 
You could edit in-place, like so:
Code:
# put this in a block so that the changes to global variables 
# don't affect other bits of my program
{
   # load the filename into @ARGV so it can be edited in-place
   local @ARGV = ( $file );

   # turn on in-place editing, without keeping a backup
   # to keep a backup, use: local $^I = '~';
   local $^I = '';

   # loop through all lines in the file
   while(<>) {
      # current line is stored in $_
      # anything you print will be printed to the file instead of the current line

      # this just prints the current line, so the file doesn't change
      print;
   }
}
 
That server is still using perl 5.006! You need to move to a differnt host. Fast.

------------------------------------------
- Kevin, perl coder unexceptional! [wiggle]
 
Have a look at the 'use lib' directive

But, yeah 5.006 is ancient, have a word with your hosts

Paul
------------------------------------
Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
 
Hey thanks for your replys,

ishnid, I will try your code and see if it is successful. And ill check out lib.
But I will definately speak to the host, considering their package comes with alot of perl related features, hopefully they will look into installing a later version. What is the latest version at the moment?

Chris
 
5.8.8

Paul
------------------------------------
Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top