Mercurial > hg > Members > kono > nitros9-code
annotate docs/nitros9guide/verify.refentry @ 2112:cfb3a637a000
Fixed lack of H6309 flag
author | boisy |
---|---|
date | Tue, 21 Aug 2007 17:05:14 +0000 |
parents | 4dae346c4969 |
children |
rev | line source |
---|---|
140 | 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> | |
1093 | 9 <command>verify</command> |
140 | 10 <arg choice="opt"> |
914 | 11 <option>-u</option> |
140 | 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> | |
914 | 25 If the -u (update) option is specified, the module(s) will be copied |
140 | 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 | |
1053
b5ff125a1d60
Since this book was only typeset in fixed width, single-font, they used
roug
parents:
914
diff
changeset
|
29 those computed by <command>verify</command>. |
140 | 30 </para> |
31 <para> | |
32 If the option is NOT specified, the module will not be copied to | |
1053
b5ff125a1d60
Since this book was only typeset in fixed width, single-font, they used
roug
parents:
914
diff
changeset
|
33 standard output. <command>Verify</command> will only display a message to indicate |
140 | 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 <EDIT >NEWEDIT | |
41 | |
42 Module's header parity is correct. | |
43 Calculated CRC matches module's. | |
44 | |
45 OS9: verify <myprograml >myprogram2 | |
46 | |
47 Module's header parity is correct. | |
48 CRC does not match. | |
49 | |
50 OS9: verify <myprogram2 | |
51 | |
52 Module's header parity is correct. | |
53 Calculated CRC matches module's. | |
54 | |
914 | 55 OS9: verify -u <module >temp |
140 | 56 </screen> |
57 </refsect1> | |
58 </refentry> | |
59 |