On Sun, 2008-11-30 at 22:53 -0700, Josh Davidson wrote:
> I must be missing something:
>             sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
>                 -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P; \
> 
> How is the "< $*.d >> $*.P" not redirecting STDIN to $*.d?

It is redirecting STDIN to read from $*.d.  I never said it wasn't.

I said it is not reading from the TERMINAL.  And it isn't; it's reading
from the file $*.d.

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <[EMAIL PROTECTED]>          Find some GNU make tips at:
 http://www.gnu.org                      http://make.mad-scientist.us
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist


_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to