Re: qauestion using ed.

2006-08-02 Thread Bill Campbell
On Wed, Aug 02, 2006, Gary Kline wrote:

   Guys,

   How, pray tel, do I use ed to delete 23 lines?  I can find foo
   with /foo, but then .,20d or .,+20d or .,+20 d don't work.

.,.+20d

dotcommadot+20d

If you use the ``ex'' invocation of vi(m), ``20dd'' should do it.

Bill
--
INTERNET:   [EMAIL PROTECTED]  Bill Campbell; Celestial Software LLC
URL: http://www.celestial.com/  PO Box 820; 6641 E. Mercer Way
FAX:(206) 232-9186  Mercer Island, WA 98040-0820; (206) 236-1676

``Perhaps, when committing your first federal crime, it would be unwise to
slap your name and address on it and mail it to 10,000 people.'' --Dogbert
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: qauestion using ed.

2006-08-02 Thread Gary Kline
On Wed, Aug 02, 2006 at 04:59:03PM -0700, Bill Campbell wrote:
 On Wed, Aug 02, 2006, Gary Kline wrote:
 
  Guys,
 
  How, pray tel, do I use ed to delete 23 lines?  I can find foo
  with /foo, but then .,20d or .,+20d or .,+20 d don't work.
 
 .,.+20d
 
 dotcommadot+20d
 
 If you use the ``ex'' invocation of vi(m), ``20dd'' should do it.
 
 Bill

Thankee!  This works for most /patterns, but script
gives me a bizarre err.  This is part of aa javascript cmd
I'm  trying to get rid of.  I've simplified the /pattern to
/script type as below.   Still get the stuff to stderr.  
Any idea what?  

gary



-- 
   Gary Kline [EMAIL PROTECTED]   www.thought.org Public service Unix


for files in *.php
do
echo $files
/usr/bin/ex - $files \!

/script type
.,.+10 d
.
w
q
!
done
sync;sync

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