in message <[EMAIL PROTECTED]>,
wrote CD Baby thusly...
>
> What simple built-in command-line tools are available if I want to
> just do some simple math on the command line?
> 
> If I'm there in a shell, and need to know what 17 times 36 equals?

In addition to [bd]c(1) ...

  Perl:
    perl -e 'print +(17 * 36)'

  awk:
    echo |awk '{print 17 * 36}'


  - Parv

-- 

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

Reply via email to