Re: xargs problem

2007-02-19 Thread Jean-Rene David
* Markus Hoenicka [2007.02.19 10:45]: > $ echo test1 test2|xargs -t > /bin/echo test1 test2 > test1 test2 > > I'd expect the output to read: > > /bin/echo test1 > test1 > /bin/echo test2 > test2 Your assumption about what xargs does is incorrect. It does not call the command once for each argume

Re: Printing man pages

2006-03-02 Thread Jean-Rene David
* Reid Thompson [2006.03.02 14:15]: > man groff | enscript -p - | ps2pdf - groff.pdf One less step: man -Tps groff | ps2pdf - groff.pdf I find the output prettier too. -- JR -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.h