Re: Sed command in Perl

2003-10-21 Thread Steve Grazzini
On Tue, Oct 21, 2003 at 02:45:50PM -0400, Raghu Murthy wrote: > How do I include a sed command in perl. > > If i do sed -e"s\./ " file_name it works fine at the command prompt. > But if i include the sed command in perl it does not return any value. > > I

Sed command in Perl

2003-10-21 Thread Raghu Murthy
How do I include a sed command in perl. If i do sed -e"s\./ " file_name it works fine at the command prompt. But if i include the sed command in perl it does not return any value. I tried doing system("sed -e"s\./.." file_name"); it does not do anything. Is