home *** CD-ROM | disk | FTP | other *** search
- ;
- ;
- ; This is an example for an automatic restore procedure for Untitled III.
- ; The Ordner files will be decompressed by FUnCopy.
- ; To compress them, use FUnCopy with the option C.
- ;
- ; Usage: FUnCopy source destination option
- ;
- ; You may want to modify this file, if you intend to use it. The use of
- ; FUnCopy instead of Lha can speed up the compression on older Amigas.
- ;
- ;
- ; USE AT YOUR OWN RISK
- ;
- ;
- ; Copyright by Harald Zottmann - Version 1.0 - 14.02.1996
- ;
-
-
-
- ;
- ; Request first disk
- ;
-
- Echo "*E[0;0H*E[J"
- Echo "Untitled III Restore Procedure"
- Echo "Copyright by Harald Zottmann"
- Echo "USE AT YOUR OWN RISK"
- Requester Continue Abort "Untitled III Restore Procedure" "Welcome to the Untitled III" "Restore Procedure" "Insert the first disk in drive df0:"
- If ERROR
- EndCLI
- Quit 0
- EndIf
- Echo "*E[0;0H*E[J"
-
- Echo "Restoring MC_Ordner_1 from df0:"
- FUnCopy df0:MC_Ordner_1 /MC_Ordner_1 D
- Echo ""
-
-
-
- ;
- ; Request second disk
- ;
-
- Echo "*E[0;0H*E[J"
- Requester Continue Abort "Untitled III Restore Procedure" "Insert the second disk in drive df0:" "or select <Continue> to proceed."
- If ERROR
- EndCLI
- Quit 0
- EndIf
- Echo "*E[0;0H*E[J"
-
- Echo "Restoring CD_Ordner_1 from df0:"
- FUnCopy df0:CD_Ordner_1 /CD_Ordner_1 D
- Echo ""
-
- Echo "Restoring Phono_Ordner_1 from df0:"
- FUnCopy df0:Phono_Ordner_1 /Phono_Ordner_1 D
- Echo ""
-
- Echo "Restoring Video_Ordner_1 from df0:"
- FUnCopy df0:Video_Ordner_1 /Video_Ordner_1 D
- Echo ""
- Echo ""
-
- Echo "Done !"
- Echo ""
-
-
-
- ;
- ; That`s it
- ;
-