Mercurial > hg > Members > kono > nitros9-code
annotate docs/nitros9guide/rename.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="rename"> |
2 <refnamediv> | |
3 <refname>RENAME</refname> | |
4 <refpurpose>Change file name</refpurpose> | |
5 </refnamediv> | |
6 | |
7 <refsynopsisdiv> | |
8 <cmdsynopsis> | |
1093 | 9 <command>rename</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 <replaceable>new name</replaceable> |
138 | 15 </arg> |
16 </cmdsynopsis> | |
17 </refsynopsisdiv> | |
18 | |
19 <refsect1><title>Description</title> | |
20 <para> | |
21 Gives the mass storage file specified in the pathlist a new name. | |
22 The user must have write permission for the file to change its name. | |
1053
b5ff125a1d60
Since this book was only typeset in fixed width, single-font, they used
roug
parents:
975
diff
changeset
|
23 It is not possible to change the names of devices, <filename class="directory">.</filename>, or |
b5ff125a1d60
Since this book was only typeset in fixed width, single-font, they used
roug
parents:
975
diff
changeset
|
24 <filename class="directory">..</filename> |
138 | 25 </para> |
26 </refsect1> | |
27 <refsect1><title>Examples</title> | |
28 <literallayout> | |
29 rename blue purple | |
30 | |
31 rename /D3/user9/test temp | |
32 </literallayout> | |
33 | |
34 <screen> | |
35 OS9: dir | |
36 | |
37 Directory of . 16:22:53 | |
38 myfile animals | |
39 | |
40 OS9:rename animals cars | |
41 OS9:dir | |
42 | |
43 Directory of . 16:23:22 | |
44 myfile cars | |
45 </screen> | |
46 </refsect1> | |
47 </refentry> | |
48 |