home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 10
/
aminetcdnumber101996.iso
/
Aminet
/
text
/
print
/
VCArchive321.lha
/
vcarchive
/
tools
/
Backup
next >
Wrap
Text File
|
1995-09-24
|
1KB
|
74 lines
;
;
; This is an example for an automatic backup procedure for Untitled III.
; The Ordner files will be compressed by FUnCopy.
; To decompress them, use FUnCopy with the option D.
;
; 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 - 24.09.1995
;
;
; Request first disk
;
Echo "*E[0;0H*E[J"
Echo "Untitled III Backup Procedure"
Echo "Copyright by Harald Zottmann"
Echo "USE AT YOUR OWN RISK"
Requester Continue Abort "Untitled III Backup Procedure" "Welcome to the Untitled III" "Backup Procedure" "Insert the first disk in drive df0:"
If ERROR
EndCLI
Quit 0
EndIf
Echo "*E[0;0H*E[J"
Echo "Copying MC_Ordner_1 to df0:"
FUnCopy /MC_Ordner_1 df0:MC_Ordner_1 C
Echo ""
;
; Request second disk
;
Echo "*E[0;0H*E[J"
Requester Continue Abort "Untitled III Backup Procedure" "Insert the second disk in drive df0:"
If ERROR
EndCLI
Quit 0
EndIf
Echo "*E[0;0H*E[J"
Echo "Copying CD_Ordner_1 to df0:"
FUnCopy /CD_Ordner_1 df0:CD_Ordner_1 C
Echo ""
Echo "Copying Phono_Ordner_1 to df0:"
FUnCopy /Phono_Ordner_1 df0:Phono_Ordner_1 C
Echo ""
Echo "Copying Video_Ordner_1 to df0:"
FUnCopy /Video_Ordner_1 df0:Video_Ordner_1 C
Echo ""
Echo "Done !"
Echo ""
;
; That`s it
;