Re: Editing a file with bash...

2003-10-30 Thread Shantanoo Mahajan
+++ Xpression [freebsd] [29-10-03 09:00 -0500]:
| Hi list, can I edit a file and delete a line by searching any parameter with
| bash ??? Thanks...
| 
| 
| --

grep -v string oldfile > newfile
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Editing a file with bash...

2003-10-29 Thread Viktor Lazlo


On Wed, 29 Oct 2003, Xpression wrote:

> Hi list, can I edit a file and delete a line by searching any parameter with
> bash ??? Thanks...

sed '/searchstring/d' file1 >file2

Cheers,

Viktor
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"