Mercurial > hg > Members > kono > nitros9-code
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 |
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 | 2 Syntax: Dsave [<opts>] [<to path>] |
1657 | 3 Usage : Generates procedure file to copy all files from the |
1930 | 4 current directory to <to path> |
840 | 5 Opts : |
6 -b = make a system disk by using OS9boot if present | |
7 -b=<path> = make system disk using path as source | |
8 -i = indent for directory levels | |
9 -l = do not process below the current level | |
10 -m = do not include makdir commands in procedure file | |
1930 | 11 -n = don't load copy/cmp |
1182 | 12 -r = force rewrite of file on copy |
840 | 13 -s<num> = set copy size to num K |
1930 | 14 -t = don't issue tmode (pause/nopause) |
1591 | 15 -v = verify copies |
1913 | 16 |
17 Examples: | |
18 Create a script to copy /h0 to /h5 with forced rewrite: | |
1915 | 19 chd /h0; dsave -r /h5 > dsave.out |
1913 | 20 |
21 Immediately copy /d0 to /d1 with a 24K copy buffer: | |
1915 | 22 chd /d0; dsave -s24 /d1 ! shell -p |