home *** CD-ROM | disk | FTP | other *** search
-
- ; this example creation script works under 1.3 AND 2.0
- ;
-
- copy "" df0: ALL CLONE
-
- if NOT EXISTS df0:c
- makedir df0:c
- endif
-
- if NOT EXISTS df0:l
- makedir df0:l
- endif
-
- if exists c:execute
- copy c:execute df0:c
- endif
-
- if exists c:run
- copy c:run df0:c
- endif
-
- if exists c:path
- copy c:path df0:c
- endif
-
- if exists c:cd
- copy c:cd df0:c
- endif
-
-
- if exists c:assign
- copy c:assign df0:c
- endif
-
- if exists c:delete
- copy c:delete df0:c
- endif
-
- if exists c:info
- copy c:info df0:c
- endif
-
- if exists c:echo
- copy c:echo df0:c
- endif
-
- if exists l:port-handler
- copy l:port-handler df0:l
- endif
-
- if exists l:ram-handler
- copy l:ram-handler df0:l
- endif
-
- install df0:
-
-
-