comparison docs/nitros9guide/verify.refentry @ 140:35dd8ae53dee

Split up the commands into individual files.
author roug
date Sun, 07 Jul 2002 08:58:56 +0000
parents
children 9639def8cf2e
comparison
equal deleted inserted replaced
139:0b25831b73ee 140:35dd8ae53dee
1 <refentry id="verify">
2 <refnamediv>
3 <refname>VERIFY</refname>
4 <refpurpose>Verify or update module header and CRC</refpurpose>
5 </refnamediv>
6
7 <refsynopsisdiv>
8 <cmdsynopsis>
9 <command>VERIFY</command>
10 <arg choice="opt">
11 <option>u</option>
12 </arg>
13 </cmdsynopsis>
14 </refsynopsisdiv>
15
16 <refsect1><title>Description</title>
17
18 <para>
19 This command is used to verify that module header parity and CRC
20 value of one or more modules on a file (standard input) are correct.
21 Module(s) are read from standard input, and messages will be sent to
22 the standard error path.
23 </para>
24 <para>
25 If the U (update) option is specified, the module(s) will be copied
26 to the standard output path with the module's header parity and CRC
27 values replaced with the computed values. A message will be
28 displayed to indicate whether or not the module's values matched
29 those computed by VERIFY.
30 </para>
31 <para>
32 If the option is NOT specified, the module will not be copied to
33 standard output. VERIFY will only display a message to indicate
34 whether or not the module's header parity and CRC matched those
35 which were computed.
36 </para>
37 </refsect1>
38 <refsect1><title>Examples</title>
39 <screen>
40 OS9: verify &lt;EDIT &gt;NEWEDIT
41
42 Module's header parity is correct.
43 Calculated CRC matches module's.
44
45 OS9: verify &lt;myprograml &gt;myprogram2
46
47 Module's header parity is correct.
48 CRC does not match.
49
50 OS9: verify &lt;myprogram2
51
52 Module's header parity is correct.
53 Calculated CRC matches module's.
54
55 OS9: verify u &lt;module &gt;temp
56 </screen>
57 </refsect1>
58 </refentry>
59