in reply to Re: Remove a line from a file using perl one liner
in thread Remove a line from a file using perl one liner

Lines in httpd conf files are sometimes indented.
perl -pi -e's#^\s+Alias.*/icons/.*##s' one.txt

Replies are listed 'Best First'.
Re^3: Remove a line from a file using perl one liner
by olus (Curate) on Mar 19, 2009 at 14:09 UTC

    You're absolutely right. Thanks

    I'll go and write on the white board 'assumptions are evil' :o)

Re^3: Remove a line from a file using perl one liner
by Anonymous Monk on Mar 19, 2009 at 14:11 UTC
    Thanks All ...It worked well for me.
    Thanks a lot.