source: buchla-68k/orig/doc/Utilities/TOS.TXT@ 3ae31e9

Last change on this file since 3ae31e9 was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Imported original source code.

  • Property mode set to 100755
File size: 1.5 KB
Line 
1Commands in TOS
2
3CAT filenm.ext
4TYPE filenm.ext
5 Writes filenm.ext to standard output.
6
7CD [pathnm]
8 With pathnm it sets the current working directory.
9 Without pathnm it displays the current working directory.
10
11CLS
12 Clears the screen.
13
14COPY source_file [destination_file]
15 Copies source to destination. If no destination is given, the
16 current directory is assumed.
17
18DIR or LS [filenm.ext] [/f] [/d] [/t]
19 /f - anything but directoryies.
20 /d - directories only.
21 /t - terse: names only.
22
23EXIT
24 Exits CLI to invoking program.
25
26INIT [drive_spec:]
27 Reinitializes FAT entries, thereby wiping the disk.
28
29MD [subdirectory name]
30 Creates a new subdirectory in current directory.
31
32MOVE source_file [destination_file]
33 Copies source to destination and deletes source.
34 If no destination is given, uses the current directory.
35
36NOWRAP
37 Disables line wrap.
38
39PATH [pathnm[;pathnm]...]
40 With path name sets default path for batch and commands.
41 Without path name displays current path
42
43PAUSE
44 Writes 'CR to continue...' to standard output
45 and waits for a carriage return from standard input.
46
47RD [pathnm]
48 Removes named directory.
49
50REM or ECHO ["string"]
51 Strips quotes and writes string to standard output.
52
53REN source_file_nm [destination_file_nm]
54 Renames source to destination.
55
56RM or DEL or ERA filenm
57 Removes named file from directory.
58
59SHOW [drive_spec:]
60 Displays disk status for default drive or drive specified.
61
62VERSION
63 Displays current version of OS.
64
65WRAP
66 Enbles line wrap.
Note: See TracBrowser for help on using the repository browser.