open (FILE, "qwerty.cfg"); my @indata = <FILE>; close (FILE); open (FILE, ">qwerty.cfg"); foreach (@indata) { print FILE $_ unless $_ =~ /всем привет/; } close (FILE);