doc: improve factor example
authorJim Meyering <meyering@redhat.com>
Tue, 20 Dec 2011 13:39:57 +0000 (14:39 +0100)
committerJim Meyering <meyering@redhat.com>
Tue, 20 Dec 2011 13:39:57 +0000 (14:39 +0100)
* doc/coreutils.texi (factor invocation): Adjust example to use $(...)
consistently, not a mix of `...` and $(...).  Separate the computation
of the product and the actual factorization, so the timing of the
latter doesn't include the cost of the former.

doc/coreutils.texi

index c26a53d..c229f98 100644 (file)
@@ -15964,8 +15964,10 @@ Factoring the product of the eighth and ninth Mersenne primes
 takes about 30 milliseconds of CPU time on a 2.2 GHz Athlon.
 
 @example
-M8=`echo 2^31-1|bc` ; M9=`echo 2^61-1|bc`
-/usr/bin/time -f '%U' factor $(echo "$M8 * $M9" | bc)
+M8=$(echo 2^31-1|bc)
+M9=$(echo 2^61-1|bc)
+n=$(echo "$M8 * $M9" | bc)
+/usr/bin/time -f %U factor $n
 4951760154835678088235319297: 2147483647 2305843009213693951
 0.03
 @end example