Mercurial > hg > Members > kono > nitros9-code
annotate docs/nitros9guide/merge.refentry @ 2772:0a3f4d8ea6d5
Found ENDC in wrong location in dwread.asm and dwwrite.asm. Corrected.
Moved the native 6309 code in dwread.asm and dwwrite.asm into the H6309 labeled area and changed IFEQ H6309 to IFNE H6309. Also moved the 57600bps 6809 code to the default location. This change had been done in the old dwread.asm and dwwrite.asm files to make it easier to follow. Though these two files were overwritten from the HDBDOS project dwread.asm and dwwrite.asm files. So this conversion needed to be done again so it made the source easier to follow.
author | drencor-xeen |
---|---|
date | Wed, 23 Jan 2013 12:36:55 -0600 |
parents | 4dae346c4969 |
children |
rev | line source |
---|---|
138 | 1 <refentry id="merge"> |
2 <refnamediv> | |
3 <refname>MERGE</refname> | |
4 <refpurpose>Copy and Combine Files to Standard Output</refpurpose> | |
5 </refnamediv> | |
6 | |
7 <refsynopsisdiv> | |
8 <cmdsynopsis> | |
1093 | 9 <command>merge</command> |
138 | 10 <arg choice="plain"> |
975
c565a4700689
The entitity replstart was replaced with <replaceable>
roug
parents:
138
diff
changeset
|
11 <replaceable>path</replaceable> |
138 | 12 </arg> |
13 <arg choice="plain"> | |
975
c565a4700689
The entitity replstart was replaced with <replaceable>
roug
parents:
138
diff
changeset
|
14 &repeatst; <replaceable>path</replaceable> &repeaten; |
138 | 15 </arg> |
16 </cmdsynopsis> | |
17 </refsynopsisdiv> | |
18 | |
19 <refsect1><title>Description</title> | |
20 <para> | |
21 This command copies multiple input files specified by the pathlists | |
22 given as parameters to the standard output path. it is commonly | |
23 used to combine several files into a single output file. Data is | |
1053
b5ff125a1d60
Since this book was only typeset in fixed width, single-font, they used
roug
parents:
975
diff
changeset
|
24 copied in the order the pathlists are given. <command>Merge</command> does no output |
138 | 25 line editing (such as automatic line feed). The standard output is |
26 generally redirected to a file or device. | |
27 </para> | |
28 </refsect1> | |
29 <refsect1><title>Examples</title> | |
30 <screen> | |
31 OS9: merge file1 file2 file3 file4 >combined.file | |
32 | |
33 OS9: merge compile.list asm.list >/printer | |
34 </screen> | |
35 </refsect1> | |
36 </refentry> | |
37 |