home *** CD-ROM | disk | FTP | other *** search
/ Aminet 10 / aminetcdnumber101996.iso / Aminet / text / print / VCArchive321.lha / vcarchive / tools / Backup next >
Text File  |  1995-09-24  |  1KB  |  74 lines

  1. ;
  2. ;
  3. ; This is an example for an automatic backup procedure for Untitled III.
  4. ; The Ordner files will be compressed by FUnCopy. 
  5. ; To decompress them, use FUnCopy with the option D.
  6. ;
  7. ; Usage: FUnCopy source destination option
  8. ;
  9. ; You may want to modify this file, if you intend to use it. The use of
  10. ; FUnCopy instead of Lha can speed up the compression on older Amigas.
  11. ;
  12. ;
  13. ; USE AT YOUR OWN RISK
  14. ;
  15. ;
  16. ; Copyright by Harald Zottmann - Version 1.0 - 24.09.1995
  17. ;
  18.  
  19.  
  20.  
  21. ;
  22. ; Request first disk
  23. ;
  24.  
  25. Echo "*E[0;0H*E[J"
  26. Echo "Untitled III Backup Procedure"
  27. Echo "Copyright by Harald Zottmann"
  28. Echo "USE AT YOUR OWN RISK"
  29. Requester Continue Abort "Untitled III Backup Procedure" "Welcome to the Untitled III" "Backup Procedure" "Insert the first disk in drive df0:"
  30. If ERROR
  31. EndCLI
  32. Quit 0 
  33. EndIf
  34. Echo "*E[0;0H*E[J"
  35.  
  36. Echo "Copying MC_Ordner_1 to df0:"
  37. FUnCopy /MC_Ordner_1 df0:MC_Ordner_1 C
  38. Echo ""
  39.  
  40.  
  41.  
  42. ;
  43. ; Request second disk
  44. ;
  45.  
  46. Echo "*E[0;0H*E[J"
  47. Requester Continue Abort "Untitled III Backup Procedure" "Insert the second disk in drive df0:"
  48. If ERROR
  49. EndCLI
  50. Quit 0 
  51. EndIf
  52. Echo "*E[0;0H*E[J"
  53.  
  54. Echo "Copying CD_Ordner_1 to df0:"
  55. FUnCopy /CD_Ordner_1 df0:CD_Ordner_1 C
  56. Echo ""
  57.  
  58. Echo "Copying Phono_Ordner_1 to df0:"
  59. FUnCopy /Phono_Ordner_1 df0:Phono_Ordner_1 C
  60. Echo ""
  61.  
  62. Echo "Copying Video_Ordner_1 to df0:"
  63. FUnCopy /Video_Ordner_1 df0:Video_Ordner_1 C
  64. Echo ""
  65.  
  66. Echo "Done !"
  67. Echo ""
  68.  
  69.  
  70.  
  71. ;
  72. ; That`s it 
  73. ;
  74.