Mercurial > hg > Members > kono > nitros9-code
annotate level1/sys/dsave.hp @ 1915:f70eda2916e7
Removed tabs
author | boisy |
---|---|
date | Sun, 20 Nov 2005 17:24:38 +0000 |
parents | d26f5a738e6b |
children | 91fb0d6e789f |
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 |
1657 | 2 Syntax: Dsave [<opts>] [<pathlist>] |
3 Usage : Generates procedure file to copy all files from the | |
4 current directory to <pathlist> | |
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 | |
1182 | 11 -r = force rewrite of file on copy |
840 | 12 -s<num> = set copy size to num K |
1591 | 13 -v = verify copies |
1913 | 14 |
15 Examples: | |
16 Create a script to copy /h0 to /h5 with forced rewrite: | |
1915 | 17 chd /h0; dsave -r /h5 > dsave.out |
1913 | 18 |
19 Immediately copy /d0 to /d1 with a 24K copy buffer: | |
1915 | 20 chd /d0; dsave -s24 /d1 ! shell -p |