home *** CD-ROM | disk | FTP | other *** search
/ Rockford Magazine / Rockford_Magazine_026_19xx_-_de_Disk_1_of_2_Side_B.d64 / arc.docs < prev    next >
Text File  |  2023-02-26  |  4KB  |  157 lines

  1.                  ARC250
  2.  
  3.  
  4. If you're primarily interested in using
  5. ARC to create and dissolve files on a
  6. C-64 with a single disk drive, these
  7. simplified (greatly simplified) docs
  8. should be all you'll ever need. If you
  9. later decide to utilize more of the
  10. many features ARC has, get the full
  11. documentation (its big!).
  12.  
  13.  
  14. Date:  ARC boots up with a default date
  15. of 1 Jan, 1980. If you're only going to
  16. dissolve an ARChive, there's no need to
  17. change this. However, if you are going
  18. to create an ARChive, you should type
  19. in the current date because it will be
  20. recorded on the ARCfile you create. Do
  21. this by typing "date", a space, dd,mm,
  22. yyyy. For example, today's date is the
  23. 2nd of January, 1988, so I would enter:
  24.  
  25.     "date 02,01,1988" and hit RETURN.
  26.  
  27.  
  28. Spaces:  ARC uses a space to separate
  29. filenames. A problem can occur if there
  30. is a space WITHIN a filename.  For
  31. example, if you type "testfile 2.0",
  32. ARC will search for (and not find)
  33. "testfile" and then search for "2.0",
  34. as if they were two separate files.
  35. Fortunately, there's a simple solution
  36. to this; just use a SHIFTED SPACE
  37. between the "testfile" and the "2.0",
  38. which will look like a normal space on
  39. the screen, but will be distinguished
  40. from a regular space separating two
  41. filenames.
  42.  
  43.  
  44. Dissolving an ARChive file:
  45.  
  46.      "arc/x filename"    (easy!)
  47.  
  48. Extracts all files from the ARCfile
  49. called "filename" on drive a: (device
  50. 8/drive 0 like a 1541/1571 would be).
  51.  
  52.  
  53. Creating ARChive files:    (a little
  54. tricky, but not really difficult)
  55.  
  56. "arc/c arcname filename filename etc."
  57. "arc/c arcname *"  (all files on disk)
  58. "arc/c arcname b*" (all files starting
  59.                   with the letter "b")
  60.  
  61. Example: Lets say you want to create
  62. an ARCfile consisting of files that are
  63. named "abcd", "file1", "file2", and
  64. "docs" and that you want to call the
  65. resulting ARCfile "test".
  66.  
  67. You could copy these 4 files onto a
  68. blank disk first and use the wildcard
  69. "*":
  70.  
  71.      "arc/c test *"
  72.  
  73. Or, if you don't want to copy them over
  74. to a blank disk, you can type out each
  75. filename, separated by spaces:
  76.  
  77.      "arc/c test abcd file1 file2 docs"
  78.  
  79. Either method creates an ARChive file
  80. called "test.arc" on drive a. Note that
  81. the ".arc" gets put on automatically.
  82. You never have to type the ".arc" when
  83. entering an ARCname.
  84.  
  85.  
  86. Directory: "dir"    (lists filenames in
  87.                     the disk directory)
  88.  
  89. It is very handy to list the directory
  90. immediately before using ARC/C or ARC/X
  91. so that all the filenames you'll need
  92. to type in will be listed on the screen.
  93.  
  94. Delete:   "del filename" (erases a file
  95.                      (or several files)
  96.                       from the disk)
  97.  
  98. To scratch a file called "test", just
  99. type "del test".  If you have 4 files
  100. named "test1", "test2", "test3", and
  101. "test4" and you want to delete all 4,
  102. just type "del test*" and every file
  103. that begins with "test" will be deleted.
  104.  
  105. Rename:   "ren oldname newname"
  106.                       (to rename files)
  107.  
  108. To rename a file called "temp" to
  109. "perm", just type "ren temp perm"
  110.  
  111.  
  112. List:     "arc/l arcfile"  (lists out
  113.                         the contents of
  114.                         an ARC'ed file)
  115.  
  116.  
  117. Colors:  You can change the default
  118. colors for the screen border, screen
  119. background, and cursor by POKING the
  120. standard Commodore color numbers (0-15)
  121. to any color combination you prefer,
  122. as follows:
  123.  
  124.         LOAD"ARC250",8
  125.         POKE 20815,n    (background)
  126.         POKE 20820,n    (border)
  127.         POKE 20825,n    (cursor)
  128.         SAVE"new name",8
  129.  
  130. If you want to create a SDA (self-
  131. dissolving ARC) file, first create the
  132. ARCfile as shown above, then use one of
  133. the separate SDA utilities to change
  134. the file from ".ARC" to ".SDA".
  135. Utilities to convert from ".ARC" to
  136. ".SDA" are available on Q-Link and on
  137. many local BBS's. My favorite is
  138. "ARC-SDA V4.5", written by Mark Rhodes.
  139.  
  140. That's all most of us will ever need to
  141. know to use ARC. If you want more, then
  142. you'll need the official documentation.
  143. For the latest ARC version, current
  144. documentation, and ARC ownership
  145. registration I suggest you send $20 to
  146. the author of ARC, Chris Smeets at:
  147.  
  148. Chris Smeets/ARC64
  149. Ampere Metal
  150. 80 Hale Road Unit 4
  151. Brampton, Ontario
  152. Cananda, L6W-3M1
  153. 416-458-0039 (BBS)
  154.  
  155. Many thanks to Chris Smeets for a
  156. fantastic ARChive program!
  157.