summaryrefslogtreecommitdiff
path: root/v4.0-ozzie/bin/DISK1/COMMANDS.DOC
diff options
context:
space:
mode:
authorGravatar Mark Zbikowski2024-04-25 21:24:10 +0100
committerGravatar Microsoft Open Source2024-04-25 22:32:27 +0000
commit2d04cacc5322951f187bb17e017c12920ac8ebe2 (patch)
tree80ee017efa878dfd5344b44249e6a241f2a7f6e2 /v4.0-ozzie/bin/DISK1/COMMANDS.DOC
parentMerge pull request #430 from jpbaltazar/typoptbr (diff)
downloadms-dos-main.tar.gz
ms-dos-main.tar.xz
ms-dos-main.zip
MZ is back!HEADmain
Diffstat (limited to 'v4.0-ozzie/bin/DISK1/COMMANDS.DOC')
-rw-r--r--v4.0-ozzie/bin/DISK1/COMMANDS.DOC199
1 files changed, 199 insertions, 0 deletions
diff --git a/v4.0-ozzie/bin/DISK1/COMMANDS.DOC b/v4.0-ozzie/bin/DISK1/COMMANDS.DOC
new file mode 100644
index 0000000..0fcfed7
--- /dev/null
+++ b/v4.0-ozzie/bin/DISK1/COMMANDS.DOC
@@ -0,0 +1,199 @@
1
2
3
4
5
6
7 Multi-Tasking MS-DOS
8 Beta Test Release 1.00
9
10 Command Guide
11
12
13 ARENA.EXE - Prints out arena assignments
14
15 arena
16
17 The system's memory arena is printed out. The
18 number listed under the owner field is the PID of
19 the process which owns the memory.
20
21
22 BBSET.EXE - Set and report on behavior bits
23
24 bbset [-o] [ {+|-}bitname ... ] fname ...
25
26 BBSET sets or clears behavior bits in an .EXE file
27 header. Multi-Tasking MS-DOS uses the behavior
28 bits to determine the level of special
29 compatibility support needed to run the
30 application.
31
32 BBSET will set (if +bitname) or clear (if -
33 bitname) the named behavior bit(s) from the
34 specified files. If the -o switch is specified,
35 BBSET writes a report on the current setting of
36 all the defined behavior bits to stdout after
37 making the requested changes.
38
39 For a list of behavior bits that BBSET knows
40 about, type BBSET without any arguments.
41
42
43 COUNTDOW.EXE - Count down a CPU loop
44
45 countdown number
46
47 Its argument is a number; it counts the number
48 down to 0, at about a 1hz rate. It prints out
49 the countdown. Another CPU loop program like
50 TEXT, but this one terminates when the count
51 reaches 0
52
53
54 DETACH.EXE - Detaches a child process
55
56 detach command [argument ...]
57
58 The command given is run as a background process.
59 Detach prints out the Command Subgroup ID (CSID)
60 which may be used as an argument to KILL to
61 terminate the process.
62
63
64
65
66
67
68
69
70
71 Multi-Tasking MS-DOS Command Guide - Page: 2
72
73 HE_DAEM.EXE - Hard error catcher
74
75 detach he_daem
76
77 Intercepts hard errors, reports them and requests
78 user action. This should always be run in the
79 background for now. Put the above command line in
80 your AUTOEXEC.BAT file if you're not going to use
81 the Session Manager (SM).
82
83
84 KILL.EXE - send a signal to a process
85
86 kill [-nn] [sig=nn] [disp=mm] pid ...
87
88 Sends signal nn with disposition mm to processes
89 mentioned in pid. Defaults to SIGTERM and process
90 tree disposition.
91
92
93 POUND.EXE - Exercise disk I/O system
94
95 pound [t]count filea fileb
96
97 Pound reads sequencially through filea and fileb,
98 reading 512 bytes at a time alternating between
99 the files on each read. When the end of file is
100 read the following read for that file begins at
101 the beginning of the file. If a count is
102 specified without the preceeding "t" then pound
103 reads 512 bytes, count number of times from each
104 file before the program terminates. If "t"
105 preceeds the count value then the files are read
106 for count number of seconds before the program
107 terminates.
108
109
110 SLEEP.EXE - Sleep for a while
111
112 sleep sec[.millisec]
113
114 Sleep will execute a sleep system call for the
115 number of seconds and milliseconds specified.
116 This might be useful in batch files to pause for
117 an interval as opposed to waiting for a user
118 response.
119
120
121 SM.EXE - Session manager
122
123 sm
124
125 Manages multiple processes running on different
126 screens. Uses initialization file SM.INI. This
127
128
129
130
131
132
133
134
135
136
137 Multi-Tasking MS-DOS Command Guide - Page: 3
138
139 program includes the hard error catcher, so don't
140 run HE_DAEM if you're going to use this. See the
141 file SM.DOC for more information.
142
143
144 TEXT.EXE - Loop and print text
145
146 text argument
147
148 CPU loops and prints its argument every 2 CPU
149 seconds or so
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199 \ No newline at end of file