Mercurial > hg > Members > kono > nitros9-code
annotate docs/nitros9guide/merge.refentry @ 975:c565a4700689
The entitity replstart was replaced with <replaceable>
author | roug |
---|---|
date | Sat, 01 Feb 2003 20:25:53 +0000 |
parents | d9631713b7cd |
children | b5ff125a1d60 |
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> | |
9 <command>MERGE</command> | |
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 | |
24 copied in the order the pathlists are given. MERGE does no output | |
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 |