1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML
><HEAD
><TITLE
>Shell Wrappers</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.76b+
"><LINK
REL="HOME"
TITLE="Advanced Bash-Scripting Guide"
HREF="index.html"><LINK
REL="UP"
TITLE="Miscellany"
HREF="miscellany.html"><LINK
REL="PREVIOUS"
TITLE="Miscellany"
HREF="miscellany.html"><LINK
REL="NEXT"
TITLE="Tests and Comparisons: Alternatives"
HREF="testsandcomparisons.html"><META
HTTP-EQUIV="Content-Style-Type"
CONTENT="text/css"><LINK
REL="stylesheet"
HREF="common/kde-common.css"
TYPE="text/css"><META
HTTP-EQUIV="Content-Type"
CONTENT="text/html; charset=iso-8859-1"><META
HTTP-EQUIV="Content-Language"
CONTENT="en"><LINK
REL="stylesheet"
HREF="common/kde-localised.css"
TYPE="text/css"
TITLE="KDE-English"><LINK
REL="stylesheet"
HREF="common/kde-default.css"
TYPE="text/css"
TITLE="KDE-Default"></HEAD
><BODY
CLASS="SECT1"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#AA0000"
VLINK="#AA0055"
ALINK="#AA0000"
STYLE="font-family: sans-serif;"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>Advanced Bash-Scripting Guide: An in-depth exploration of the art of shell scripting</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="miscellany.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
>Chapter 36. Miscellany</TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="testsandcomparisons.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="SECT1"
><H1
CLASS="SECT1"
><A
NAME="WRAPPER"
></A
>36.2. Shell Wrappers</H1
><P
><A
NAME="SHWRAPPER"
></A
></P
><P
>A <I
CLASS="FIRSTTERM"
>wrapper</I
> is a shell script that embeds
a system command or utility, that accepts and passes a set of
parameters to that command.
<A
NAME="AEN20130"
HREF="#FTN.AEN20130"
>[1]</A
>
Wrapping a script around a complex command-line
simplifies invoking it. This is expecially useful
with <A
HREF="sedawk.html#SEDREF"
>sed</A
> and <A
HREF="awk.html#AWKREF"
>awk</A
>.</P
><P
>A
<B
CLASS="COMMAND"
> sed</B
> or
<B
CLASS="COMMAND"
>
awk</B
> script would normally be invoked
from the command-line by a <TT
CLASS="USERINPUT"
><B
>sed -e
<TT
CLASS="REPLACEABLE"
><I
>'commands'</I
></TT
></B
></TT
>
or <TT
CLASS="USERINPUT"
><B
>awk
<TT
CLASS="REPLACEABLE"
><I
>'commands'</I
></TT
></B
></TT
>. Embedding
such a script in a Bash script permits calling it more simply,
and makes it <I
CLASS="FIRSTTERM"
>reusable</I
>. This also
enables combining the functionality of <I
CLASS="FIRSTTERM"
>sed</I
>
and <I
CLASS="FIRSTTERM"
>awk</I
>, for example <A
HREF="special-chars.html#PIPEREF"
>piping</A
> the output of a set of
<I
CLASS="FIRSTTERM"
>sed</I
> commands to
<I
CLASS="FIRSTTERM"
>awk</I
>. As a saved executable file,
you can then repeatedly invoke it in its original form or
modified, without the inconvenience of retyping it on the
command-line.</P
><DIV
CLASS="EXAMPLE"
><HR><A
NAME="EX3"
></A
><P
><B
>Example 36-1. <I
CLASS="FIRSTTERM"
>shell wrapper</I
></B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="PROGRAMLISTING"
> 1 #!/bin/bash
2
3 # This simple script removes blank lines from a file.
4 # No argument checking.
5 #
6 # You might wish to add something like:
7 #
8 # E_NOARGS=85
9 # if [ -z "$1" ]
10 # then
11 # echo "Usage: `basename $0` target-file"
12 # exit $E_NOARGS
13 # fi
14
15
16
17 sed -e /^$/d "$1"
18 # Same as
19 # sed -e '/^$/d' filename
20 # invoked from the command-line.
21
22 # The '-e' means an "editing" command follows (optional here).
23 # '^' indicates the beginning of line, '$' the end.
24 # This matches lines with nothing between the beginning and the end --
25 #+ blank lines.
26 # The 'd' is the delete command.
27
28 # Quoting the command-line arg permits
29 #+ whitespace and special characters in the filename.
30
31 # Note that this script doesn't actually change the target file.
32 # If you need to do that, redirect its output.
33
34 exit</PRE
></TD
></TR
></TABLE
><HR></DIV
><DIV
CLASS="EXAMPLE"
><HR><A
NAME="EX4"
></A
><P
><B
>Example 36-2. A slightly more complex <I
CLASS="FIRSTTERM"
>shell
wrapper</I
></B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="PROGRAMLISTING"
> 1 #!/bin/bash
2
3 # subst.sh: a script that substitutes one pattern for
4 #+ another in a file,
5 #+ i.e., "sh subst.sh Smith Jones letter.txt".
6 # Jones replaces Smith.
7
8 ARGS=3 # Script requires 3 arguments.
9 E_BADARGS=85 # Wrong number of arguments passed to script.
10
11 if [ $# -ne "$ARGS" ]
12 then
13 echo "Usage: `basename $0` old-pattern new-pattern filename"
14 exit $E_BADARGS
15 fi
16
17 old_pattern=$1
18 new_pattern=$2
19
20 if [ -f "$3" ]
21 then
22 file_name=$3
23 else
24 echo "File \"$3\" does not exist."
25 exit $E_BADARGS
26 fi
27
28
29 # -----------------------------------------------
30 # Here is where the heavy work gets done.
31 sed -e "s/$old_pattern/$new_pattern/g" $file_name
32 # -----------------------------------------------
33
34 # 's' is, of course, the substitute command in sed,
35 #+ and /pattern/ invokes address matching.
36 # The 'g,' or global flag causes substitution for EVERY
37 #+ occurence of $old_pattern on each line, not just the first.
38 # Read the 'sed' docs for an in-depth explanation.
39
40 exit $? # Redirect the output of this script to write to a file.</PRE
></TD
></TR
></TABLE
><HR></DIV
><DIV
CLASS="EXAMPLE"
><HR><A
NAME="LOGGINGWRAPPER"
></A
><P
><B
>Example 36-3. A generic <I
CLASS="FIRSTTERM"
>shell wrapper</I
> that
writes to a logfile</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="PROGRAMLISTING"
> 1 #!/bin/bash
2 # logging-wrapper.sh
3 # Generic shell wrapper that performs an operation
4 #+ and logs it.
5
6 DEFAULT_LOGFILE=logfile.txt
7
8 # Set the following two variables.
9 OPERATION=
10 # Can be a complex chain of commands,
11 #+ for example an awk script or a pipe . . .
12
13 LOGFILE=
14 if [ -z "$LOGFILE" ]
15 then # If not set, default to ...
16 LOGFILE="$DEFAULT_LOGFILE"
17 fi
18
19 # Command-line arguments, if any, for the operation.
20 OPTIONS="$@"
21
22
23 # Log it.
24 echo "`date` + `whoami` + $OPERATION "$@"" >> $LOGFILE
25 # Now, do it.
26 exec $OPERATION "$@"
27
28 # It's necessary to do the logging before the operation.
29 # Why?</PRE
></TD
></TR
></TABLE
><HR></DIV
><DIV
CLASS="EXAMPLE"
><HR><A
NAME="PRASC"
></A
><P
><B
>Example 36-4. A <I
CLASS="FIRSTTERM"
>shell wrapper</I
> around an awk
script</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="PROGRAMLISTING"
> 1 #!/bin/bash
2 # pr-ascii.sh: Prints a table of ASCII characters.
3
4 START=33 # Range of printable ASCII characters (decimal).
5 END=127 # Will not work for unprintable characters (> 127).
6
7 echo " Decimal Hex Character" # Header.
8 echo " ------- --- ---------"
9
10 for ((i=START; i<=END; i++))
11 do
12 echo $i | awk '{printf(" %3d %2x %c\n", $1, $1, $1)}'
13 # The Bash printf builtin will not work in this context:
14 # printf "%c" "$i"
15 done
16
17 exit 0
18
19
20 # Decimal Hex Character
21 # ------- --- ---------
22 # 33 21 !
23 # 34 22 "
24 # 35 23 #
25 # 36 24 $
26 #
27 # . . .
28 #
29 # 122 7a z
30 # 123 7b {
31 # 124 7c |
32 # 125 7d }
33
34
35 # Redirect the output of this script to a file
36 #+ or pipe it to "more": sh pr-asc.sh | more</PRE
></TD
></TR
></TABLE
><HR></DIV
><DIV
CLASS="EXAMPLE"
><HR><A
NAME="COLTOTALER"
></A
><P
><B
>Example 36-5. A <I
CLASS="FIRSTTERM"
>shell wrapper</I
> around another
awk script</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="PROGRAMLISTING"
> 1 #!/bin/bash
2
3 # Adds up a specified column (of numbers) in the target file.
4 # Floating-point (decimal) numbers okay, because awk can handle them.
5
6 ARGS=2
7 E_WRONGARGS=85
8
9 if [ $# -ne "$ARGS" ] # Check for proper number of command-line args.
10 then
11 echo "Usage: `basename $0` filename column-number"
12 exit $E_WRONGARGS
13 fi
14
15 filename=$1
16 column_number=$2
17
18 # Passing shell variables to the awk part of the script is a bit tricky.
19 # One method is to strong-quote the Bash-script variable
20 #+ within the awk script.
21 # $'$BASH_SCRIPT_VAR'
22 # ^ ^
23 # This is done in the embedded awk script below.
24 # See the awk documentation for more details.
25
26 # A multi-line awk script is here invoked by
27 # awk '
28 # ...
29 # ...
30 # ...
31 # '
32
33
34 # Begin awk script.
35 # -----------------------------
36 awk '
37
38 { total += $'"${column_number}"'
39 }
40 END {
41 print total
42 }
43
44 ' "$filename"
45 # -----------------------------
46 # End awk script.
47
48
49 # It may not be safe to pass shell variables to an embedded awk script,
50 #+ so Stephane Chazelas proposes the following alternative:
51 # ---------------------------------------
52 # awk -v column_number="$column_number" '
53 # { total += $column_number
54 # }
55 # END {
56 # print total
57 # }' "$filename"
58 # ---------------------------------------
59
60
61 exit 0</PRE
></TD
></TR
></TABLE
><HR></DIV
><P
><A
NAME="PERLREF"
></A
>For those scripts needing a single
do-it-all tool, a Swiss army knife, there is
<I
CLASS="FIRSTTERM"
>Perl</I
>. Perl combines the
capabilities of <A
HREF="sedawk.html#SEDREF"
>sed</A
> and <A
HREF="awk.html#AWKREF"
>awk</A
>, and throws in a large subset of
<B
CLASS="COMMAND"
>C</B
>, to boot. It is modular and contains support
for everything ranging from object-oriented programming up to and
including the kitchen sink. Short Perl scripts lend themselves to
embedding within shell scripts, and there may be some substance
to the claim that Perl can totally replace shell scripting
(though the author of the <SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
>ABS Guide</I
></SPAN
> remains
skeptical).</P
><P
><A
NAME="PERLEMB"
></A
></P
><DIV
CLASS="EXAMPLE"
><HR><A
NAME="EX56"
></A
><P
><B
>Example 36-6. Perl embedded in a <I
CLASS="FIRSTTERM"
>Bash</I
> script</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="PROGRAMLISTING"
> 1 #!/bin/bash
2
3 # Shell commands may precede the Perl script.
4 echo "This precedes the embedded Perl script within \"$0\"."
5 echo "==============================================================="
6
7 perl -e 'print "This line prints from an embedded Perl script.\n";'
8 # Like sed, Perl also uses the "-e" option.
9
10 echo "==============================================================="
11 echo "However, the script may also contain shell and system commands."
12
13 exit 0</PRE
></TD
></TR
></TABLE
><HR></DIV
><P
>It is even possible to combine a Bash script and Perl script
within the same file. Depending on how the script is invoked, either
the Bash part or the Perl part will execute.</P
><P
><A
NAME="BASHANDPERL0"
></A
></P
><DIV
CLASS="EXAMPLE"
><HR><A
NAME="BASHANDPERL"
></A
><P
><B
>Example 36-7. Bash and Perl scripts combined</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="PROGRAMLISTING"
> 1 #!/bin/bash
2 # bashandperl.sh
3
4 echo "Greetings from the Bash part of the script, $0."
5 # More Bash commands may follow here.
6
7 exit
8 # End of Bash part of the script.
9
10 # =======================================================
11
12 #!/usr/bin/perl
13 # This part of the script must be invoked with
14 # perl -x bashandperl.sh
15
16 print "Greetings from the Perl part of the script, $0.\n";
17 # Perl doesn't seem to like "echo" ...
18 # More Perl commands may follow here.
19
20 # End of Perl part of the script.</PRE
></TD
></TR
></TABLE
><HR></DIV
><P
> <TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="SCREEN"
> <TT
CLASS="PROMPT"
>bash$ </TT
><TT
CLASS="USERINPUT"
><B
>bash bashandperl.sh</B
></TT
>
<TT
CLASS="COMPUTEROUTPUT"
>Greetings from the Bash part of the script.</TT
>
<TT
CLASS="PROMPT"
>bash$ </TT
><TT
CLASS="USERINPUT"
><B
>perl -x bashandperl.sh</B
></TT
>
<TT
CLASS="COMPUTEROUTPUT"
>Greetings from the Perl part of the script.</TT
>
</PRE
></TD
></TR
></TABLE
>
</P
><P
>It is, of course, possible to embed even more exotic scripting
languages within shell wrappers. <I
CLASS="FIRSTTERM"
>Python</I
>,
for example ...</P
><P
><A
NAME="PYTHONEMB"
></A
></P
><DIV
CLASS="EXAMPLE"
><HR><A
NAME="EX56PY"
></A
><P
><B
>Example 36-8. Python embedded in a <I
CLASS="FIRSTTERM"
>Bash</I
> script</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="PROGRAMLISTING"
> 1 #!/bin/bash
2 # ex56py.sh
3
4 # Shell commands may precede the Python script.
5 echo "This precedes the embedded Python script within \"$0.\""
6 echo "==============================================================="
7
8 python -c 'print "This line prints from an embedded Python script.\n";'
9 # Unlike sed and perl, Python uses the "-c" option.
10 python -c 'k = raw_input( "Hit a key to exit to outer script. " )'
11
12 echo "==============================================================="
13 echo "However, the script may also contain shell and system commands."
14
15 exit 0</PRE
></TD
></TR
></TABLE
><HR></DIV
><P
>Wrapping a script around <I
CLASS="FIRSTTERM"
>mplayer</I
>
and the Google's translation server, you can create something
that talks back to you.</P
><P
><A
NAME="SPEECH00"
></A
></P
><DIV
CLASS="EXAMPLE"
><HR><A
NAME="SPEECH0"
></A
><P
><B
>Example 36-9. A script that speaks</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="PROGRAMLISTING"
> 1 #!/bin/bash
2 # Courtesy of:
3 # http://elinux.org/RPi_Text_to_Speech_(Speech_Synthesis)
4
5 # You must be on-line for this script to work,
6 #+ so you can access the Google translation server.
7 # Of course, mplayer must be present on your computer.
8
9 speak()
10 {
11 local IFS=+
12 # Invoke mplayer, then connect to Google translation server.
13 /usr/bin/mplayer -ao alsa -really-quiet -noconsolecontrols \
14 "http://translate.google.com/translate_tts?tl=en&q="$*""
15 # Google translates, but can also speak.
16 }
17
18 LINES=4
19
20 spk=$(tail -$LINES $0) # Tail end of same script!
21 speak "$spk"
22 exit
23 # Browns. Nice talking to you.</PRE
></TD
></TR
></TABLE
><HR></DIV
><P
>One interesting example of a complex shell wrapper is Martin
Matusiak's <A
HREF="http://sourceforge.net/projects/undvd/"
TARGET="_top"
><I
CLASS="FIRSTTERM"
>undvd</I
>
script</A
>, which provides an easy-to-use
command-line interface to the complex <A
HREF="http://www.mplayerhq.hu/DOCS/HTML/en/mencoder.html"
TARGET="_top"
>mencoder</A
>
utility. Another example is Itzchak Rehberg's <A
HREF="http://projects.izzysoft.de/trac/ext3undel"
TARGET="_top"
>Ext3Undel</A
>,
a set of scripts to recover deleted file on an
<I
CLASS="FIRSTTERM"
>ext3</I
> filesystem.</P
></DIV
><H3
CLASS="FOOTNOTES"
>Notes</H3
><TABLE
BORDER="0"
CLASS="FOOTNOTES"
WIDTH="100%"
><TR
><TD
ALIGN="LEFT"
VALIGN="TOP"
WIDTH="5%"
><A
NAME="FTN.AEN20130"
HREF="wrapper.html#AEN20130"
>[1]</A
></TD
><TD
ALIGN="LEFT"
VALIGN="TOP"
WIDTH="95%"
><P
>Quite a number of Linux utilities are, in fact,
shell wrappers. Some examples are
<TT
CLASS="FILENAME"
>/usr/bin/pdf2ps</TT
>,
<TT
CLASS="FILENAME"
>/usr/bin/batch</TT
>, and
<TT
CLASS="FILENAME"
>/usr/bin/xmkmf</TT
>.</P
></TD
></TR
></TABLE
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="miscellany.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="testsandcomparisons.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>Miscellany</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="miscellany.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>Tests and Comparisons: Alternatives</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>
|