Re: prob relating sed
- From: Bruce Barnett <spamhater113+U060809223409@xxxxxxxxxxxx>
- Date: Thu, 10 Aug 2006 02:34:19 +0000 (UTC)
"JyotiC" <jyoti.chhabra@xxxxxxxxx> writes:
hi,
nlmconv$(EXEEXT): $(nlmconv_OBJECTS) $(nlmconv_DEPENDENCIES)Well, I'm not sure I remember your original question, but if you want
srconv$(EXEEXT): $(srconv_OBJECTS) $(srconv_DEPENDENCIES)
sysdump$(EXEEXT): $(sysdump_OBJECTS) $(sysdump_DEPENDENCIES)
coffdump$(EXEEXT): $(coffdump_OBJECTS) $(coffdump_DEPENDENCIES)
dlltool$(EXEEXT): $(dlltool_OBJECTS) $(dlltool_DEPENDENCIES)
windres$(EXEEXT): $(windres_OBJECTS) $(windres_DEPENDENCIES)
dllwrap$(EXEEXT): $(dllwrap_OBJECTS) $(dllwrap_DEPENDENCIES)
size$(EXEEXT): $(size_OBJECTS) $(size_DEPENDENCIES)
to remove '$(EXEEXT)' use
sed 's/$(EXEEXT)//'
I just don't want to remove '$(EXEEXT)', i want to remove everything
after nlmconv from the first line n so forth.
Do you mean you want to remove everything after the $(EXEEXT)? - from their to the end of the line?
That's
sed 's/$(EXEEXT).*$//'
just add
.*$
to match anything up to the end of the line.
--
Sending unsolicited commercial e-mail to this account incurs a fee of
$500 per message, and acknowledges the legality of this contract.
.
- Follow-Ups:
- Re: prob relating sed
- From: JyotiC
- Re: prob relating sed
- References:
- prob relating sed
- From: JyotiC
- Re: prob relating sed
- From: Hermann Peifer
- Re: prob relating sed
- From: JyotiC
- Re: prob relating sed
- From: Bruce Barnett
- Re: prob relating sed
- From: JyotiC
- Re: prob relating sed
- From: Bruce Barnett
- Re: prob relating sed
- From: JyotiC
- prob relating sed
- Prev by Date: Re: ruby vs. perl
- Next by Date: Re: Newbie Variable Question
- Previous by thread: Re: prob relating sed
- Next by thread: Re: prob relating sed
- Index(es):
Relevant Pages
|