Hi Robert and all,

> length=`echo ${some_command} | dd bs=1 of=/dev/null 2>&1 | 

as long as `echo' is a shell builtin, you'll probably get away with

   length=`echo ${some_command} | wc -c`

Take care,
Kalle

--
Fox LightWare GmbH
http://www.fox-lightware.de

_______________________________________________
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool

Reply via email to