annotate level1/sys/dsave.hp @ 1985:4037b23c848d

SuperDos rom, assembalable for Dragon Dos, Dragon Alpha or RS-DOS
author afra
date Fri, 20 Jan 2006 01:54:33 +0000
parents 91fb0d6e789f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
285
5ac4920aa1f7 Added *.hp files from OS-9 Level Two, removed cmds.hp as the old OS-9 Level One
boisy
parents:
diff changeset
1 @DSAVE
1930
91fb0d6e789f Added -t and -n options to dsave
boisy
parents: 1915
diff changeset
2 Syntax: Dsave [<opts>] [<to path>]
1657
e301acf9026c Updated to reflect new dsave syntax
boisy
parents: 1591
diff changeset
3 Usage : Generates procedure file to copy all files from the
1930
91fb0d6e789f Added -t and -n options to dsave
boisy
parents: 1915
diff changeset
4 current directory to <to path>
840
72b6bd4532fc Changed format of output slightly
boisy
parents: 285
diff changeset
5 Opts :
72b6bd4532fc Changed format of output slightly
boisy
parents: 285
diff changeset
6 -b = make a system disk by using OS9boot if present
72b6bd4532fc Changed format of output slightly
boisy
parents: 285
diff changeset
7 -b=<path> = make system disk using path as source
72b6bd4532fc Changed format of output slightly
boisy
parents: 285
diff changeset
8 -i = indent for directory levels
72b6bd4532fc Changed format of output slightly
boisy
parents: 285
diff changeset
9 -l = do not process below the current level
72b6bd4532fc Changed format of output slightly
boisy
parents: 285
diff changeset
10 -m = do not include makdir commands in procedure file
1930
91fb0d6e789f Added -t and -n options to dsave
boisy
parents: 1915
diff changeset
11 -n = don't load copy/cmp
1182
ebab2688fbae Fixed slight problems
boisy
parents: 956
diff changeset
12 -r = force rewrite of file on copy
840
72b6bd4532fc Changed format of output slightly
boisy
parents: 285
diff changeset
13 -s<num> = set copy size to num K
1930
91fb0d6e789f Added -t and -n options to dsave
boisy
parents: 1915
diff changeset
14 -t = don't issue tmode (pause/nopause)
1591
4e2aad6b55bd co32.asm: copious source notes added
boisy
parents: 1182
diff changeset
15 -v = verify copies
1913
d26f5a738e6b Added examples section
boisy
parents: 1657
diff changeset
16
d26f5a738e6b Added examples section
boisy
parents: 1657
diff changeset
17 Examples:
d26f5a738e6b Added examples section
boisy
parents: 1657
diff changeset
18 Create a script to copy /h0 to /h5 with forced rewrite:
1915
f70eda2916e7 Removed tabs
boisy
parents: 1913
diff changeset
19 chd /h0; dsave -r /h5 > dsave.out
1913
d26f5a738e6b Added examples section
boisy
parents: 1657
diff changeset
20
d26f5a738e6b Added examples section
boisy
parents: 1657
diff changeset
21 Immediately copy /d0 to /d1 with a 24K copy buffer:
1915
f70eda2916e7 Removed tabs
boisy
parents: 1913
diff changeset
22 chd /d0; dsave -s24 /d1 ! shell -p