Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: deleting lines from file

by phenom (Chaplain)
on Mar 18, 2004 at 02:42 UTC ( [id://337590]=note: print w/replies, xml ) Need Help??


in reply to deleting lines from file

Not tested, but how about:
#!/usr/bin/perl use strict; use warnings; my $valueToDelete = $ARGV[0] || "two 222 sld"; open(FH, "oldfile") or die "open failed: $!"; my @contents = <FH>; close(FH); open(FH, ">oldfile") or die "open failed: $!"; foreach my $line (@contents) { print FH $line if($line !~ /$valueToDelete/); } close(FH);

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://337590]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-04-19 11:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found