Mercurial > hg > Members > kono > nitros9-code
annotate docs/nitros9guide/del.refentry @ 2112:cfb3a637a000
Fixed lack of H6309 flag
author | boisy |
---|---|
date | Tue, 21 Aug 2007 17:05:14 +0000 |
parents | b00cf13c9f61 |
children |
rev | line source |
---|---|
136 | 1 <refentry id="del"> |
2 <refnamediv> | |
3 <refname>DEL</refname> | |
4 <refpurpose>Delete a file</refpurpose> | |
5 </refnamediv> | |
6 | |
7 <refsynopsisdiv> | |
8 <cmdsynopsis> | |
1093 | 9 <command>del</command> |
136 | 10 <arg choice="opt"> |
11 <option>-x</option> | |
12 </arg> | |
13 <arg choice="plain"> | |
975
c565a4700689
The entitity replstart was replaced with <replaceable>
roug
parents:
136
diff
changeset
|
14 <replaceable>path</replaceable> |
136 | 15 </arg> |
16 <arg choice="plain"> | |
975
c565a4700689
The entitity replstart was replaced with <replaceable>
roug
parents:
136
diff
changeset
|
17 &repeatst;<replaceable>path</replaceable>&repeaten; |
136 | 18 </arg> |
19 </cmdsynopsis> | |
20 </refsynopsisdiv> | |
21 | |
22 <refsect1><title>Description</title> | |
23 <para> | |
24 This command is used to delete the file(s) specified by the | |
1053
b5ff125a1d60
Since this book was only typeset in fixed width, single-font, they used
roug
parents:
975
diff
changeset
|
25 pathlist(s). The user must have write permission for the file(s). |
136 | 26 Directory files cannot be deleted unless their type is changed to |
1093 | 27 non-directory: see the <command>attr</command> command description. |
136 | 28 </para> |
29 <para> | |
30 If the -x option appears, the current | |
31 <emphasis>execution</emphasis> directory is assumed. | |
32 </para> | |
33 <para> | |
1093 | 34 For more information see: <xref linkend="sec3.5"/>, <xref linkend="sec3.8.1"/> |
136 | 35 </para> |
36 </refsect1> | |
37 <refsect1><title>Examples</title> | |
38 <screen> | |
39 del test_program old_test_program | |
40 | |
41 del /D1/number_five | |
42 | |
43 OS9:dir /D1 | |
44 | |
45 Directory of /D1 14:29:46 | |
46 myfile newfile | |
47 | |
48 OS9:del /D1/newfile | |
49 OS9:dir /D1 | |
50 | |
51 Directory of /D1 14:30:37 | |
52 myfile | |
53 | |
54 OS9:del myprog -x | |
55 OS9:del -x CMDS.SUBDIR/file | |
56 </screen> | |
57 </refsect1> | |
58 </refentry> | |
59 |