From: Jim Meyering Date: Mon, 10 Apr 2000 09:20:49 +0000 (+0000) Subject: use bc in example, not dc X-Git-Tag: FILEUTILS-4_0r~81 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=85846c1ba124b372312526ad00199a42beae3c10;p=thirdparty%2Fcoreutils.git use bc in example, not dc --- diff --git a/doc/sh-utils.texi b/doc/sh-utils.texi index 318da5139b..5c977abfee 100644 --- a/doc/sh-utils.texi +++ b/doc/sh-utils.texi @@ -3205,7 +3205,7 @@ the products of large primes. Factoring the product of the two largest 32-bit prime numbers takes over 10 minutes of CPU time on a 400MHz Pentium II. @example -$ p=`echo '4294967279 4294967291*p'|dc` +$ p=`echo '4294967279 * 4294967291'|bc` $ factor $p 18446743979220271189: 4294967279 4294967291 @end example