1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 03:12:48 +02:00

use bc in example, not dc

This commit is contained in:
Jim Meyering
2000-04-10 09:20:49 +00:00
parent 42b1404b54
commit 85846c1ba1

View File

@@ -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